Skip to content

Commit

Permalink
Merge pull request #31 from barryorourke/bugfix_release_041
Browse files Browse the repository at this point in the history
bugfixes for 0.4.0, prepare for 0.4.1 release
  • Loading branch information
barryorourke authored Nov 9, 2017
2 parents d61c34e + 8a03d88 commit 1a5d90d
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins

## [Unreleased]

# [0.4.1]
## Fixed
- Fixes `get_api_settings` method (@absolutejam)
- Add missing dependeny to setup.py (@barryorourke)

## Changed
- Move utils sub-package into the main package (@barryorourke)

## [0.4.0]
### Added
- Add support for python 3.5, which is the default version in Debian 9. (@barryorourke)
Expand Down Expand Up @@ -38,7 +46,8 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
## [0.1.0] 2014-01-06
- Initial release (@zsprackett)

[Unreleased]: https://github.com/sensu-plugins/sensu-plugin-python/compare/0.4.0...HEAD
[Unreleased]: https://github.com/sensu-plugins/sensu-plugin-python/compare/0.4.1...HEAD
[0.4.1]: https://github.com/sensu-plugins/sensu-plugin-python/compare/0.4.0...0.4.1
[0.4.0]: https://github.com/sensu-plugins/sensu-plugin-python/compare/8920afcda62b34e9134ba9a816582dbf5f52806c...0.4.0
[0.3.2]: https://github.com/sensu-plugins/sensu-plugin-python/compare/40314082947208acf9ed7c6d6c321ea52a14e765...8920afcda62b34e9134ba9a816582dbf5f52806c
[0.3.1]: https://github.com/sensu-plugins/sensu-plugin-python/compare/2deaf3a34cd86afe13af9ab34aefd8056d284e85...40314082947208acf9ed7c6d6c321ea52a14e765
Expand Down
File renamed without changes.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='sensu_plugin',
version='0.4.0',
version='0.4.1',
author='Sensu-Plugins and contributors',
author_email='[email protected]',
packages=['sensu_plugin', 'sensu_plugin.test'],
Expand All @@ -13,7 +13,8 @@
long_description="""
""",
install_requires=[
'argparse'
'argparse',
'requests'
],
tests_require=[
'pep8',
Expand Down

0 comments on commit 1a5d90d

Please sign in to comment.