diff --git a/CHANGELOG.md b/CHANGELOG.md index 719ac9f..dbd4f58 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ 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] + +## [4.1.0] - 2020-07-02 ### Changed - Updated rubocop development dependency to '~= 0.81.0' - Updated rake development dependency to '~= 13.0' @@ -121,9 +123,11 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins ### Added - initial release -[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-logs/compare/4.0.0...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-logs/compare/4.1.0...HEAD +[4.1.0]: https://github.com/sensu-plugins/sensu-plugins-logs/compare/4.0.0...4.1.0 [4.0.0]: https://github.com/sensu-plugins/sensu-plugins-logs/compare/3.0.0...4.0.0 [3.0.0]: https://github.com/sensu-plugins/sensu-plugins-logs/compare/2.0.0...3.0.0 +[3.0.0]: https://github.com/sensu-plugins/sensu-plugins-logs/compare/2.0.0...3.0.0 [2.0.0]: https://github.com/sensu-plugins/sensu-plugins-logs/compare/1.3.1...2.0.0 [1.3.1]: https://github.com/sensu-plugins/sensu-plugins-logs/compare/1.3.0...1.3.1 [1.3.0]: https://github.com/sensu-plugins/sensu-plugins-logs/compare/1.2.1...1.3.0 diff --git a/lib/sensu-plugins-logs/version.rb b/lib/sensu-plugins-logs/version.rb index 1a2ea1b..c801e59 100644 --- a/lib/sensu-plugins-logs/version.rb +++ b/lib/sensu-plugins-logs/version.rb @@ -3,7 +3,7 @@ module SensuPluginsLogs module Version MAJOR = 4 - MINOR = 0 + MINOR = 1 PATCH = 0 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')