Skip to content

Commit dc3687f

Browse files
committed
v2.3.0
1 parent 51bc8fb commit dc3687f

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

CHANGELOG.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This document records all notable changes to `HTTPie <https://httpie.org>`_.
66
This project adheres to `Semantic Versioning <https://semver.org/>`_.
77

88

9-
`2.3.0-dev`_ (unreleased)
9+
`2.3.0`_ (2020-10-25)
1010
-------------------------
1111

1212
* Added support for multipart upload streaming (`#684`_).
@@ -452,7 +452,7 @@ This project adheres to `Semantic Versioning <https://semver.org/>`_.
452452
.. _2.0.0: https://github.com/jakubroztocil/httpie/compare/1.0.3...2.0.0
453453
.. _2.1.0: https://github.com/jakubroztocil/httpie/compare/2.0.0...2.1.0
454454
.. _2.2.0: https://github.com/jakubroztocil/httpie/compare/2.1.0...2.2.0
455-
.. _2.3.0-dev: https://github.com/jakubroztocil/httpie/compare/2.2.0...master
455+
.. _2.3.0: https://github.com/jakubroztocil/httpie/compare/2.2.0...2.3.0
456456

457457

458458
.. _#128: https://github.com/jakubroztocil/httpie/issues/128

httpie/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
44
"""
55

6-
__version__ = '2.3.0-dev'
6+
__version__ = '2.3.0'
77
__author__ = 'Jakub Roztocil'
88
__licence__ = 'BSD'

setup.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,10 @@ class PyTest(TestCommand):
1818
def finalize_options(self):
1919
TestCommand.finalize_options(self)
2020
self.test_args = [
21-
'--doctest-modules', '--verbose',
22-
'./httpie', './tests'
21+
'--doctest-modules',
22+
'--verbose',
23+
'./httpie',
24+
'./tests',
2325
]
2426
self.test_suite = True
2527

@@ -72,7 +74,7 @@ def long_description():
7274
description=httpie.__doc__.strip(),
7375
long_description=long_description(),
7476
url='https://httpie.org/',
75-
download_url=f'https://github.com/jakubroztocil/httpie/archive/{httpie.__version__}.tar.gz',
77+
download_url=f'https://github.com/httpie/httpie/archive/{httpie.__version__}.tar.gz',
7678
author=httpie.__author__,
7779
author_email='jakub@roztocil.co',
7880
license=httpie.__licence__,
@@ -104,10 +106,10 @@ def long_description():
104106
'Topic :: Utilities'
105107
],
106108
project_urls={
109+
'GitHub': 'https://github.com/httpie/httpie',
110+
'Twitter': 'https://twitter.com/httpie',
107111
'Documentation': 'https://httpie.org/docs',
108-
'Source': 'https://github.com/jakubroztocil/httpie',
109112
'Online Demo': 'https://httpie.org/run',
110113
'Donate': 'https://httpie.org/donate',
111-
'Twitter': 'https://twitter.com/httpie',
112114
},
113115
)

0 commit comments

Comments
 (0)