Skip to content

Commit

Permalink
Merge pull request #26 from barryorourke/prepare_for_release_040
Browse files Browse the repository at this point in the history
prepare for release of 0.4.0
  • Loading branch information
barryorourke authored Nov 8, 2017
2 parents 4cfbe52 + c1afc62 commit f16bebe
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ script:
- ruby --version
- pep8 sensu_plugin
- pylint --rcfile=pylint.rc sensu_plugin
- nosetests --with-coverage --cover-package=sensu_plugin --cover-min-percentage=35 sensu_plugin/test/
- nosetests --with-coverage --cover-package=sensu_plugin --cover-min-percentage=25 sensu_plugin/test/
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,13 @@ This project adheres to [Semantic Versioning](http://semver.org/).
This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins/community/blob/master/HOW_WE_CHANGELOG.md)

## [Unreleased]

## [0.4.0]
### Added
- Add support for python 3.5, which is the default version in Debian 9. (@barryorourke)
- Added Dockerfiles and docker-compose.yml to aid with local development & testing (@absolutejam)
- Add handler support! (@absolutejam)
- Temporarily drop test coverage percentage (@barryorourke)

## [0.3.2] 2017-10-10
### Fixed
Expand Down Expand Up @@ -34,7 +38,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/8920afcda62b34e9134ba9a816582dbf5f52806c...HEAD
[Unreleased]: https://github.com/sensu-plugins/sensu-plugin-python/compare/0.4.0...HEAD
[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
[0.3.0]: https://github.com/sensu-plugins/sensu-plugin-python/compare/1302599c366ce30e04119bbc7551a258b33a7eab...2deaf3a34cd86afe13af9ab34aefd8056d284e85
Expand Down
2 changes: 1 addition & 1 deletion docker/docker_build/2.7/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ if [ $RC -ne 0 ]; then
EXIT=1
fi
nosetests --with-coverage --cover-package=sensu_plugin \
--cover-min-percentage=35 sensu_plugin/test/
--cover-min-percentage=25 sensu_plugin/test/
RC=$?
if [ $RC -ne 0 ]; then
EXIT=1
Expand Down
2 changes: 1 addition & 1 deletion docker/docker_build/3.4/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ if [ $RC -ne 0 ]; then
EXIT=1
fi
nosetests --with-coverage --cover-package=sensu_plugin \
--cover-min-percentage=35 sensu_plugin/test/
--cover-min-percentage=25 sensu_plugin/test/
RC=$?
if [ $RC -ne 0 ]; then
EXIT=1
Expand Down
2 changes: 1 addition & 1 deletion docker/docker_build/3.5/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ if [ $RC -ne 0 ]; then
EXIT=1
fi
nosetests --with-coverage --cover-package=sensu_plugin \
--cover-min-percentage=35 sensu_plugin/test/
--cover-min-percentage=25 sensu_plugin/test/
RC=$?
if [ $RC -ne 0 ]; then
EXIT=1
Expand Down
2 changes: 1 addition & 1 deletion docker/docker_build/3.6/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ if [ $RC -ne 0 ]; then
EXIT=1
fi
nosetests --with-coverage --cover-package=sensu_plugin \
--cover-min-percentage=35 sensu_plugin/test/
--cover-min-percentage=25 sensu_plugin/test/
RC=$?
if [ $RC -ne 0 ]; then
EXIT=1
Expand Down
2 changes: 1 addition & 1 deletion run_tests
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ if [ $RC -ne 0 ]; then
EXIT=1
fi
nosetests --with-coverage --cover-package=sensu_plugin \
--cover-min-percentage=35 sensu_plugin/test/
--cover-min-percentage=25 sensu_plugin/test/
RC=$?
if [ $RC -ne 0 ]; then
EXIT=1
Expand Down

0 comments on commit f16bebe

Please sign in to comment.