File tree 7 files changed +19
-4
lines changed
7 files changed +19
-4
lines changed Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 1.1.0
2
+ current_version = 1.1.1
3
3
commit = True
4
4
tag = False
5
5
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?:-(?P<release>[0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?(?:\+(?P<build>[0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?
Original file line number Diff line number Diff line change @@ -75,6 +75,13 @@ Changelog
75
75
76
76
Changes as of 6 April 2018
77
77
78
+ 1.1.1 <6 April 2018>
79
+ ^^^^^^^^^^^^^^^^^^^^
80
+
81
+ - HOTFIX for 1.1.0
82
+ - Fix Python versions badge in the documents index
83
+ - Add the Python 3.6 classifier in :code: `setup.py ` so the right versions are shown on PyPI
84
+
78
85
1.1.0 <6 April 2018>
79
86
^^^^^^^^^^^^^^^^^^^^
80
87
Original file line number Diff line number Diff line change @@ -17,6 +17,13 @@ Versions postfixed with '-dev' are currently under development and those without
17
17
18
18
Changes as of 6 April 2018
19
19
20
+ 1.1.1 <6 April 2018>
21
+ ^^^^^^^^^^^^^^^^^^^^
22
+
23
+ - HOTFIX for 1.1.0
24
+ - Fix Python versions badge in the documents index
25
+ - Add the Python 3.6 classifier in :code: `setup.py ` so the right versions are shown on PyPI
26
+
20
27
1.1.0 <6 April 2018>
21
28
^^^^^^^^^^^^^^^^^^^^
22
29
Original file line number Diff line number Diff line change 66
66
# built documents.
67
67
#
68
68
# The full version, including alpha/beta/rc tags.
69
- release = '1.1.0 '
69
+ release = '1.1.1 '
70
70
# The short X.Y version.
71
71
parsed_version = re .match ('(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?:-(?P<release>[0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?(?:\+(?P<build>[0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?' ,
72
72
release )
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ Welcome to :mod:`pushover_complete`
32
32
.. |stable_documentation | image :: http://readthedocs.org/projects/pushover-complete/badge/?version=stable
33
33
:target: http://pushover-complete.readthedocs.io/en/stable/?badge=stable
34
34
:alt: Stable Documentation Status
35
- .. |stable_pyversions | image :: https://img.shields.io/badge/python-2.7%2C%203.5-blue.svg
35
+ .. |stable_pyversions | image :: https://img.shields.io/badge/python-2.7%2C%203.5%2C%203.6 -blue.svg
36
36
:alt: Stable Supported Python Versions
37
37
38
38
Original file line number Diff line number Diff line change 19
19
'Programming Language :: Python' ,
20
20
'Programming Language :: Python :: 2.7' ,
21
21
'Programming Language :: Python :: 3.5' ,
22
+ 'Programming Language :: Python :: 3.6' ,
22
23
'Topic :: Communications'
23
24
]
24
25
INSTALL_REQUIRES = ['requests' , 'six' ]
Original file line number Diff line number Diff line change 8
8
'PushoverAPI'
9
9
]
10
10
11
- __version__ = '1.1.0 '
11
+ __version__ = '1.1.1 '
12
12
13
13
__title__ = 'pushover_complete'
14
14
__description__ = 'A Python package for interacting with *all* aspects of the Pushover API'
You can’t perform that action at this time.
0 commit comments