Skip to content

Commit

Permalink
Version bump to 0.13.0
Browse files Browse the repository at this point in the history
This is a maintenance release
  • Loading branch information
angvp-sng committed Jul 23, 2019
1 parent 1d7aa79 commit bd341dc
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 9 deletions.
2 changes: 2 additions & 0 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,5 @@ Contributors
* Lindsay Hill <[email protected]>
* Duncan Hutty <[email protected]>
* Ryan McCabe <[email protected]>
* Wellington Castello <[email protected]>
* Armando Trinchillo <[email protected]>
17 changes: 11 additions & 6 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,36 +3,41 @@
History
-------

0.13.0 (2019-07-23)
~~~~~~~~~~~~~~~~~~~

* Modified logging and exceptions for http status

0.10.0 (2017-05-17)
++++++++++++++++++
~~~~~~~~~~~~~~~~~~~

* Add support for results API

0.9.0 (2017-03-13)
++++++++++++++++++
~~~~~~~~~~~~~~~~~~

* Add support for silenced API

0.8.0 (2016-11-28)
++++++++++++++++++
~~~~~~~~~~~~~~~~~~

* Added operations for Aggregates and Status (Health/Info)
* Added support for optional limit/offset parameters to get_clients
* Modified post_check_request to work properly with subscribers.

0.7.0 (2016-08-17)
++++++++++++++++++
~~~~~~~~~~~~~~~~~~

* Fix adding stashes

0.6.0 (2016-08-02)
++++++++++++++++++
~~~~~~~~~~~~~~~~~~

* Fix calls to Sensu API entrypoints in order to make them compatible
with lastest version of Sensu API (0.24) previous versions of Sensu API
might not behave as expected.

0.1.0 (2015-12-15)
++++++++++++++++++
~~~~~~~~~~~~~~~~~~

* First release on PyPI.
2 changes: 1 addition & 1 deletion pysensu/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__author__ = 'Angel Velasquez'
__email__ = '[email protected]'
__version__ = '0.11.0'
__version__ = '0.13.0'
USER_AGENT = 'PySensu Client v{}'.format(__version__)
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

setup(
name='pysensu-ng',
version='0.11.0',
version='0.13.0',
description='This is a client to interact with the Sensu API',
long_description=readme + '\n\n' + doclink + '\n\n' + history,
author='Angel Velasquez',
Expand All @@ -46,10 +46,13 @@
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: PyPy',
],
)

0 comments on commit bd341dc

Please sign in to comment.