Skip to content

Commit

Permalink
v2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jkbrzt committed Oct 25, 2020
1 parent 51bc8fb commit dc3687f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This document records all notable changes to `HTTPie <https://httpie.org>`_.
This project adheres to `Semantic Versioning <https://semver.org/>`_.


`2.3.0-dev`_ (unreleased)
`2.3.0`_ (2020-10-25)
-------------------------

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


.. _#128: https://github.com/jakubroztocil/httpie/issues/128
Expand Down
2 changes: 1 addition & 1 deletion httpie/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"""

__version__ = '2.3.0-dev'
__version__ = '2.3.0'
__author__ = 'Jakub Roztocil'
__licence__ = 'BSD'
12 changes: 7 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@ class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = [
'--doctest-modules', '--verbose',
'./httpie', './tests'
'--doctest-modules',
'--verbose',
'./httpie',
'./tests',
]
self.test_suite = True

Expand Down Expand Up @@ -72,7 +74,7 @@ def long_description():
description=httpie.__doc__.strip(),
long_description=long_description(),
url='https://httpie.org/',
download_url=f'https://github.com/jakubroztocil/httpie/archive/{httpie.__version__}.tar.gz',
download_url=f'https://github.com/httpie/httpie/archive/{httpie.__version__}.tar.gz',
author=httpie.__author__,
author_email='[email protected]',
license=httpie.__licence__,
Expand Down Expand Up @@ -104,10 +106,10 @@ def long_description():
'Topic :: Utilities'
],
project_urls={
'GitHub': 'https://github.com/httpie/httpie',
'Twitter': 'https://twitter.com/httpie',
'Documentation': 'https://httpie.org/docs',
'Source': 'https://github.com/jakubroztocil/httpie',
'Online Demo': 'https://httpie.org/run',
'Donate': 'https://httpie.org/donate',
'Twitter': 'https://twitter.com/httpie',
},
)

0 comments on commit dc3687f

Please sign in to comment.