1
0
mirror of https://github.com/httpie/cli.git synced 2025-01-10 00:28:12 +02:00

Added ExitStatus.PLUGIN_ERROR (7)

This commit is contained in:
Jakub Roztocil 2016-12-08 04:42:17 +01:00
parent da59381b0b
commit 3a6fd074a1
2 changed files with 6 additions and 4 deletions

View File

@ -6,8 +6,8 @@ This document records all notable changes to `HTTPie <http://httpie.org>`_.
This project adheres to `Semantic Versioning <http://semver.org/>`_.
`1.0.0-dev`_ (Unreleased)
-------------------------
`0.9.7`_ (2016-12-08)
---------------------
* Extended auth plugin API.
* Added support for ``curses``-less Python installations.
@ -317,4 +317,5 @@ This project adheres to `Semantic Versioning <http://semver.org/>`_.
.. _0.9.3: https://github.com/jkbrzt/httpie/compare/0.9.2...0.9.3
.. _0.9.4: https://github.com/jkbrzt/httpie/compare/0.9.3...0.9.4
.. _0.9.6: https://github.com/jkbrzt/httpie/compare/0.9.4...0.9.6
.. _1.0.0-dev: https://github.com/jkbrzt/httpie/compare/0.9.6...master
.. _0.9.7: https://github.com/jkbrzt/httpie/compare/0.9.6...0.9.7
.. _1.0.0-dev: https://github.com/jkbrzt/httpie/compare/0.9.7...master

View File

@ -3,7 +3,7 @@ HTTPie - a CLI, cURL-like tool for humans.
"""
__author__ = 'Jakub Roztocil'
__version__ = '1.0.0-dev'
__version__ = '0.9.7'
__licence__ = 'BSD'
@ -11,6 +11,7 @@ class ExitStatus:
"""Exit status code constants."""
OK = 0
ERROR = 1
PLUGIN_ERROR = 7
# 128+2 SIGINT <http://www.tldp.org/LDP/abs/html/exitcodes.html>
ERROR_CTRL_C = 130