mirror of
https://github.com/httpie/cli.git
synced 2025-08-12 01:22:18 +02:00
Compare commits
1 Commits
Author | SHA1 | Date | |
---|---|---|---|
dc3687f7ac |
@ -6,7 +6,7 @@ This document records all notable changes to `HTTPie <https://httpie.org>`_.
|
|||||||
This project adheres to `Semantic Versioning <https://semver.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`_).
|
* 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.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.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.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
|
.. _#128: https://github.com/jakubroztocil/httpie/issues/128
|
||||||
|
@ -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'
|
__author__ = 'Jakub Roztocil'
|
||||||
__licence__ = 'BSD'
|
__licence__ = 'BSD'
|
||||||
|
12
setup.py
12
setup.py
@ -18,8 +18,10 @@ class PyTest(TestCommand):
|
|||||||
def finalize_options(self):
|
def finalize_options(self):
|
||||||
TestCommand.finalize_options(self)
|
TestCommand.finalize_options(self)
|
||||||
self.test_args = [
|
self.test_args = [
|
||||||
'--doctest-modules', '--verbose',
|
'--doctest-modules',
|
||||||
'./httpie', './tests'
|
'--verbose',
|
||||||
|
'./httpie',
|
||||||
|
'./tests',
|
||||||
]
|
]
|
||||||
self.test_suite = True
|
self.test_suite = True
|
||||||
|
|
||||||
@ -72,7 +74,7 @@ setup(
|
|||||||
description=httpie.__doc__.strip(),
|
description=httpie.__doc__.strip(),
|
||||||
long_description=long_description(),
|
long_description=long_description(),
|
||||||
url='https://httpie.org/',
|
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=httpie.__author__,
|
||||||
author_email='jakub@roztocil.co',
|
author_email='jakub@roztocil.co',
|
||||||
license=httpie.__licence__,
|
license=httpie.__licence__,
|
||||||
@ -104,10 +106,10 @@ setup(
|
|||||||
'Topic :: Utilities'
|
'Topic :: Utilities'
|
||||||
],
|
],
|
||||||
project_urls={
|
project_urls={
|
||||||
|
'GitHub': 'https://github.com/httpie/httpie',
|
||||||
|
'Twitter': 'https://twitter.com/httpie',
|
||||||
'Documentation': 'https://httpie.org/docs',
|
'Documentation': 'https://httpie.org/docs',
|
||||||
'Source': 'https://github.com/jakubroztocil/httpie',
|
|
||||||
'Online Demo': 'https://httpie.org/run',
|
'Online Demo': 'https://httpie.org/run',
|
||||||
'Donate': 'https://httpie.org/donate',
|
'Donate': 'https://httpie.org/donate',
|
||||||
'Twitter': 'https://twitter.com/httpie',
|
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
Reference in New Issue
Block a user