Skip to content

Commit bd341dc

Browse files
committed
Version bump to 0.13.0
This is a maintenance release
1 parent 1d7aa79 commit bd341dc

File tree

4 files changed

+19
-9
lines changed

4 files changed

+19
-9
lines changed

AUTHORS.rst

+2
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,5 @@ Contributors
1515
* Lindsay Hill <[email protected]>
1616
* Duncan Hutty <[email protected]>
1717
* Ryan McCabe <[email protected]>
18+
* Wellington Castello <[email protected]>
19+
* Armando Trinchillo <[email protected]>

HISTORY.rst

+11-6
Original file line numberDiff line numberDiff line change
@@ -3,36 +3,41 @@
33
History
44
-------
55

6+
0.13.0 (2019-07-23)
7+
~~~~~~~~~~~~~~~~~~~
8+
9+
* Modified logging and exceptions for http status
10+
611
0.10.0 (2017-05-17)
7-
++++++++++++++++++
12+
~~~~~~~~~~~~~~~~~~~
813

914
* Add support for results API
1015

1116
0.9.0 (2017-03-13)
12-
++++++++++++++++++
17+
~~~~~~~~~~~~~~~~~~
1318

1419
* Add support for silenced API
1520

1621
0.8.0 (2016-11-28)
17-
++++++++++++++++++
22+
~~~~~~~~~~~~~~~~~~
1823

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

2328
0.7.0 (2016-08-17)
24-
++++++++++++++++++
29+
~~~~~~~~~~~~~~~~~~
2530

2631
* Fix adding stashes
2732

2833
0.6.0 (2016-08-02)
29-
++++++++++++++++++
34+
~~~~~~~~~~~~~~~~~~
3035

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

3540
0.1.0 (2015-12-15)
36-
++++++++++++++++++
41+
~~~~~~~~~~~~~~~~~~
3742

3843
* First release on PyPI.

pysensu/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
__author__ = 'Angel Velasquez'
22
__email__ = '[email protected]'
3-
__version__ = '0.11.0'
3+
__version__ = '0.13.0'
44
USER_AGENT = 'PySensu Client v{}'.format(__version__)

setup.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
setup(
2525
name='pysensu-ng',
26-
version='0.11.0',
26+
version='0.13.0',
2727
description='This is a client to interact with the Sensu API',
2828
long_description=readme + '\n\n' + doclink + '\n\n' + history,
2929
author='Angel Velasquez',
@@ -46,10 +46,13 @@
4646
'License :: OSI Approved :: MIT License',
4747
'Natural Language :: English',
4848
'Programming Language :: Python :: 2',
49-
'Programming Language :: Python :: 2.6',
5049
'Programming Language :: Python :: 2.7',
5150
'Programming Language :: Python :: 3',
5251
'Programming Language :: Python :: 3.3',
52+
'Programming Language :: Python :: 3.4',
53+
'Programming Language :: Python :: 3.5',
54+
'Programming Language :: Python :: 3.6',
55+
'Programming Language :: Python :: 3.7',
5356
'Programming Language :: Python :: Implementation :: PyPy',
5457
],
5558
)

0 commit comments

Comments
 (0)