Skip to content

Commit 1a5d90d

Browse files
authored
Merge pull request #31 from barryorourke/bugfix_release_041
bugfixes for 0.4.0, prepare for 0.4.1 release
2 parents d61c34e + 8a03d88 commit 1a5d90d

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
55

66
## [Unreleased]
77

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+
816
## [0.4.0]
917
### Added
1018
- 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
3846
## [0.1.0] 2014-01-06
3947
- Initial release (@zsprackett)
4048

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
4251
[0.4.0]: https://github.com/sensu-plugins/sensu-plugin-python/compare/8920afcda62b34e9134ba9a816582dbf5f52806c...0.4.0
4352
[0.3.2]: https://github.com/sensu-plugins/sensu-plugin-python/compare/40314082947208acf9ed7c6d6c321ea52a14e765...8920afcda62b34e9134ba9a816582dbf5f52806c
4453
[0.3.1]: https://github.com/sensu-plugins/sensu-plugin-python/compare/2deaf3a34cd86afe13af9ab34aefd8056d284e85...40314082947208acf9ed7c6d6c321ea52a14e765
File renamed without changes.

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name='sensu_plugin',
5-
version='0.4.0',
5+
version='0.4.1',
66
author='Sensu-Plugins and contributors',
77
author_email='sensu-users@googlegroups.com',
88
packages=['sensu_plugin', 'sensu_plugin.test'],
@@ -13,7 +13,8 @@
1313
long_description="""
1414
""",
1515
install_requires=[
16-
'argparse'
16+
'argparse',
17+
'requests'
1718
],
1819
tests_require=[
1920
'pep8',

0 commit comments

Comments
 (0)