Compare commits

...

1 Commits

Author SHA1 Message Date
dc3687f7ac v2.3.0 2020-10-25 20:39:01 +01:00
3 changed files with 10 additions and 8 deletions

View File

@ -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`_).
@ -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

View File

@ -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'

View File

@ -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',
},
)