From 272f2099a6d1be8d35b2c0391fae888b16ea2241 Mon Sep 17 00:00:00 2001 From: Eric Heydrick Date: Tue, 14 Jun 2016 10:54:10 -0700 Subject: [PATCH] prep for 1.0.0 release --- CHANGELOG.md | 7 +++++-- lib/sensu-plugins-network-checks/version.rb | 6 +++--- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b16c03..f40203a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,10 @@ This project adheres to [Semantic Versioning](http://semver.org/). This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/) ## [Unreleased] + +## [1.0.0] - 2016-06-14 ### Fixed -- check-whois-domain-expiration-multi.rb: Handle whois errors better by retrying failed lookupsE +- check-whois-domain-expiration-multi.rb: Handle whois errors better by retrying failed lookups - Use Timeout.timeout not deprecated Object#timeout ### Added @@ -142,7 +144,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang * initial release, same as community repo -[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-network-checks/compare/0.2.4...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-network-checks/compare/1.0.0...HEAD +[1.0.0]: https://github.com/sensu-plugins/sensu-plugins-network-checks/compare/0.2.4...1.0.0 [0.2.4]: https://github.com/sensu-plugins/sensu-plugins-network-checks/compare/0.1.4...0.2.4 [0.1.4]: https://github.com/sensu-plugins/sensu-plugins-network-checks/compare/0.1.3...0.1.4 [0.1.3]: https://github.com/sensu-plugins/sensu-plugins-network-checks/compare/0.1.2...0.1.3 diff --git a/lib/sensu-plugins-network-checks/version.rb b/lib/sensu-plugins-network-checks/version.rb index ad95c35..ba5ed2a 100644 --- a/lib/sensu-plugins-network-checks/version.rb +++ b/lib/sensu-plugins-network-checks/version.rb @@ -1,8 +1,8 @@ module SensuPluginsNetworkChecks module Version - MAJOR = 0 - MINOR = 2 - PATCH = 4 + MAJOR = 1 + MINOR = 0 + PATCH = 0 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.') end