diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b0d987..69d25b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins ## [Unreleased] +## [1.3.0] - 2017-11-04 ### Added - Support for multiple resolvable ips (comma separated). (@adamdecaf) - integration testing with `test-kitchen`, `kitchen-docker`, etc (@majormoses) @@ -76,6 +77,7 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins - removed cruft from /lib [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-dns/compare/1.2.1...HEAD +[1.3.0]: https://github.com/sensu-plugins/sensu-plugins-dns/compare/1.2.1...1.3.0 [1.2.1]: https://github.com/sensu-plugins/sensu-plugins-dns/compare/1.2.0...1/1.2.1 [1.2.0]: https://github.com/sensu-plugins/sensu-plugins-dns/compare/1.1.0...1/1.2 [1.1.0]: https://github.com/sensu-plugins/sensu-plugins-dns/compare/1.0.0...1/1.0 diff --git a/lib/sensu-plugins-dns/version.rb b/lib/sensu-plugins-dns/version.rb index f04e3e2..19dac54 100644 --- a/lib/sensu-plugins-dns/version.rb +++ b/lib/sensu-plugins-dns/version.rb @@ -1,8 +1,8 @@ module SensuPluginsDNS module Version MAJOR = 1 - MINOR = 2 - PATCH = 2 + MINOR = 3 + PATCH = 0 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.') end