File tree Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,14 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
5
5
6
6
## [ Unreleased]
7
7
8
+ # [ 0.4.1]
9
+ ## Fixed
10
+ - Fixes ` get_api_settings ` method (@absolutejam )
11
+ - Add missing dependeny to setup.py (@barryorourke )
12
+
13
+ ## Changed
14
+ - Move utils sub-package into the main package (@barryorourke )
15
+
8
16
## [ 0.4.0]
9
17
### Added
10
18
- Add support for python 3.5, which is the default version in Debian 9. (@barryorourke )
@@ -38,7 +46,8 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
38
46
## [ 0.1.0] 2014-01-06
39
47
- Initial release (@zsprackett )
40
48
41
- [ Unreleased ] : https://github.com/sensu-plugins/sensu-plugin-python/compare/0.4.0...HEAD
49
+ [ Unreleased ] : https://github.com/sensu-plugins/sensu-plugin-python/compare/0.4.1...HEAD
50
+ [ 0.4.1 ] : https://github.com/sensu-plugins/sensu-plugin-python/compare/0.4.0...0.4.1
42
51
[ 0.4.0 ] : https://github.com/sensu-plugins/sensu-plugin-python/compare/8920afcda62b34e9134ba9a816582dbf5f52806c...0.4.0
43
52
[ 0.3.2 ] : https://github.com/sensu-plugins/sensu-plugin-python/compare/40314082947208acf9ed7c6d6c321ea52a14e765...8920afcda62b34e9134ba9a816582dbf5f52806c
44
53
[ 0.3.1 ] : https://github.com/sensu-plugins/sensu-plugin-python/compare/2deaf3a34cd86afe13af9ab34aefd8056d284e85...40314082947208acf9ed7c6d6c321ea52a14e765
File renamed without changes.
Original file line number Diff line number Diff line change 2
2
3
3
setup (
4
4
name = 'sensu_plugin' ,
5
- version = '0.4.0 ' ,
5
+ version = '0.4.1 ' ,
6
6
author = 'Sensu-Plugins and contributors' ,
7
7
author_email = 'sensu-users@googlegroups.com' ,
8
8
packages = ['sensu_plugin' , 'sensu_plugin.test' ],
13
13
long_description = """
14
14
""" ,
15
15
install_requires = [
16
- 'argparse'
16
+ 'argparse' ,
17
+ 'requests'
17
18
],
18
19
tests_require = [
19
20
'pep8' ,
You can’t perform that action at this time.
0 commit comments