diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 84391811..c923dca4 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,7 +6,7 @@ This document records all notable changes to `HTTPie `_. This project adheres to `Semantic Versioning `_. -`2.3.0-dev`_ (unreleased) +`2.3.0`_ (2020-10-25) ------------------------- * Added support for multipart upload streaming (`#684`_). @@ -452,7 +452,7 @@ This project adheres to `Semantic Versioning `_. .. _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 diff --git a/httpie/__init__.py b/httpie/__init__.py index 3b912382..540473e7 100644 --- a/httpie/__init__.py +++ b/httpie/__init__.py @@ -3,6 +3,6 @@ HTTPie: command-line HTTP client for the API era. """ -__version__ = '2.3.0-dev' +__version__ = '2.3.0' __author__ = 'Jakub Roztocil' __licence__ = 'BSD' diff --git a/setup.py b/setup.py index ef60d351..2517c58e 100644 --- a/setup.py +++ b/setup.py @@ -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 @@ -72,7 +74,7 @@ setup( 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='jakub@roztocil.co', license=httpie.__licence__, @@ -104,10 +106,10 @@ setup( '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', }, )