mirror of
https://github.com/httpie/cli.git
synced 2025-08-14 18:59:17 +02:00
Compare commits
1 Commits
Author | SHA1 | Date | |
---|---|---|---|
753aa69a8a |
@ -1027,6 +1027,8 @@ Changelog
|
|||||||
|
|
||||||
*You can click a version name to see a diff with the previous one.*
|
*You can click a version name to see a diff with the previous one.*
|
||||||
|
|
||||||
|
* `0.3.1`_ (2012-12-18)
|
||||||
|
* Require Requests < v1.0 due to unsolved compatibility issues.
|
||||||
* `0.3.0`_ (2012-09-21)
|
* `0.3.0`_ (2012-09-21)
|
||||||
* Allow output redirection on Windows.
|
* Allow output redirection on Windows.
|
||||||
* Added configuration file.
|
* Added configuration file.
|
||||||
@ -1120,6 +1122,7 @@ Changelog
|
|||||||
.. _0.2.6: https://github.com/jkbr/httpie/compare/0.2.5...0.2.6
|
.. _0.2.6: https://github.com/jkbr/httpie/compare/0.2.5...0.2.6
|
||||||
.. _0.2.7: https://github.com/jkbr/httpie/compare/0.2.5...0.2.7
|
.. _0.2.7: https://github.com/jkbr/httpie/compare/0.2.5...0.2.7
|
||||||
.. _0.3.0: https://github.com/jkbr/httpie/compare/0.2.7...0.3.0
|
.. _0.3.0: https://github.com/jkbr/httpie/compare/0.2.7...0.3.0
|
||||||
|
.. _0.3.1: https://github.com/jkbr/httpie/compare/0.2.7...0.3.1
|
||||||
.. _stable version: https://github.com/jkbr/httpie/tree/0.3.0#readme
|
.. _stable version: https://github.com/jkbr/httpie/tree/0.3.0#readme
|
||||||
.. _AUTHORS.rst: https://github.com/jkbr/httpie/blob/master/AUTHORS.rst
|
.. _AUTHORS.rst: https://github.com/jkbr/httpie/blob/master/AUTHORS.rst
|
||||||
.. _LICENSE: https://github.com/jkbr/httpie/blob/master/LICENSE
|
.. _LICENSE: https://github.com/jkbr/httpie/blob/master/LICENSE
|
||||||
|
2
setup.py
2
setup.py
@ -13,7 +13,7 @@ if sys.argv[-1] == 'test':
|
|||||||
|
|
||||||
requirements = [
|
requirements = [
|
||||||
# Debian has only requests==0.10.1 and httpie.deb depends on that.
|
# Debian has only requests==0.10.1 and httpie.deb depends on that.
|
||||||
'requests>=0.10.1',
|
'requests>=0.10.1,<1.0',
|
||||||
'Pygments>=1.5'
|
'Pygments>=1.5'
|
||||||
]
|
]
|
||||||
if sys.version_info[:2] in ((2, 6), (3, 1)):
|
if sys.version_info[:2] in ((2, 6), (3, 1)):
|
||||||
|
Reference in New Issue
Block a user