Skip to content

Commit 75b0624

Browse files
authored
Merge pull request #40 from sensu-plugins/release/2.0.0
Release version 2.0.0
2 parents 70ca0ad + 64e5d02 commit 75b0624

File tree

3 files changed

+7
-13
lines changed

3 files changed

+7
-13
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44
This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/)
55

66
## [Unreleased]
7+
8+
## [2.0.0] - 2016-06-21
79
### Added
810
- Added handler-graphite-status.rb to create metric which gives the status of the sensu check when it changes state (0,1,2,3)
911

@@ -60,7 +62,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
6062
### Added
6163
- initial release
6264

63-
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-graphite/compare/1.1.0...HEAD
65+
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-graphite/compare/2.0.0...HEAD
66+
[2.0.0]: https://github.com/sensu-plugins/sensu-plugins-graphite/compare/1.1.0...2.0.0
6467
[1.1.0]: https://github.com/sensu-plugins/sensu-plugins-graphite/compare/1.0.0...1.1.0
6568
[1.0.0]: https://github.com/sensu-plugins/sensu-plugins-graphite/compare/0.0.7...1.0.0
6669
[0.0.7]: https://github.com/sensu-plugins/sensu-plugins-graphite/compare/0.0.6...0.0.7

Rakefile

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,6 @@ require 'rubocop/rake_task'
66
require 'yard'
77
require 'yard/rake/yardoc_task'
88

9-
desc 'Don\'t run Rubocop for unsupported versions'
10-
begin
11-
args = if RUBY_VERSION >= '2.0.0'
12-
[:spec, :make_bin_executable, :yard, :rubocop, :check_binstubs]
13-
else
14-
[:spec, :make_bin_executable, :yard]
15-
end
16-
end
17-
189
YARD::Rake::YardocTask.new do |t|
1910
OTHER_PATHS = %w().freeze
2011
t.files = ['lib/**/*.rb', 'bin/**/*.rb', OTHER_PATHS]
@@ -44,4 +35,4 @@ task :check_binstubs do
4435
end
4536
end
4637

47-
task default: args
38+
task default: [:spec, :make_bin_executable, :yard, :rubocop, :check_binstubs]

lib/sensu-plugins-graphite/version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module SensuPluginsGraphite
22
module Version
3-
MAJOR = 1
4-
MINOR = 1
3+
MAJOR = 2
4+
MINOR = 0
55
PATCH = 0
66

77
VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')

0 commit comments

Comments
 (0)