From d279cceaf589fba1e5a85b10729fbff1287169f4 Mon Sep 17 00:00:00 2001 From: Ben Abrams Date: Wed, 4 Oct 2017 20:25:52 -0700 Subject: [PATCH] prep for 1.1.0 release --- CHANGELOG.md | 4 +++- lib/sensu-plugins-snmp/version.rb | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2bbb0ce..07b289c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang ## [Unreleased] +## [1.1.0] - 2017-10-04 ### Added - check-snmp.rb: added `--port` option (@freepenguins) @@ -51,7 +52,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang ### Added - initial release -[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-snmp/compare/1.0.0...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-snmp/compare/1.1.0...HEAD +[1.1.0]: https://github.com/sensu-plugins/sensu-plugins-snmp/compare/1.0.0...1.1.0 [1.0.0]: https://github.com/sensu-plugins/sensu-plugins-snmp/compare/0.2.0...1.0.0 [0.2.0]: https://github.com/sensu-plugins/sensu-plugins-snmp/compare/0.1.0...0.2.0 [0.1.0]: https://github.com/sensu-plugins/sensu-plugins-snmp/compare/0.0.4...0.1.0 diff --git a/lib/sensu-plugins-snmp/version.rb b/lib/sensu-plugins-snmp/version.rb index 7f80918..0fc10a1 100644 --- a/lib/sensu-plugins-snmp/version.rb +++ b/lib/sensu-plugins-snmp/version.rb @@ -1,7 +1,7 @@ module SensuPluginsSnmp module Version MAJOR = 1 - MINOR = 0 + MINOR = 1 PATCH = 0 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')