Skip to content

Commit

Permalink
prep for 4.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
majormoses committed Dec 18, 2018
1 parent b21dc02 commit ca3b5d3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins

## [Unreleased]

## [4.0.0] - 2018-12-17
### Breaking Changes
- bumped dependency of `sensu-plugin` to `~> 3.0` (@dependabot) @majormoses

## [3.0.1] - 2018-09-04
### Fixed
- `metrics-http-json-deep.rb`: properly filter out non numeric values (@CosmoPennypacker)
Expand Down Expand Up @@ -210,7 +214,8 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
### Added
- Initial release

[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-http/compare/3.0.1...HEAD
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-http/compare/4.0.0...HEAD
[4.0.0]: https://github.com/sensu-plugins/sensu-plugins-http/compare/3.0.1...4.0.0
[3.0.1]: https://github.com/sensu-plugins/sensu-plugins-http/compare/3.0.0...3.0.1
[3.0.0]: https://github.com/sensu-plugins/sensu-plugins-http/compare/2.11.0...3.0.0
[2.11.0]: https://github.com/sensu-plugins/sensu-plugins-http/compare/2.10.0...2.11.0
Expand Down
4 changes: 2 additions & 2 deletions lib/sensu-plugins-http/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

module SensuPluginsHttp
module Version
MAJOR = 3
MAJOR = 4
MINOR = 0
PATCH = 1
PATCH = 0

VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
end
Expand Down
2 changes: 1 addition & 1 deletion sensu-plugins-http.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Gem::Specification.new do |s| # rubocop:disable Metrics/BlockLength
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.version = SensuPluginsHttp::Version::VER_STRING

s.add_runtime_dependency 'sensu-plugin', '>= 2.5', '< 4.0'
s.add_runtime_dependency 'sensu-plugin', '>= 3.0', '< 4.0'

s.add_runtime_dependency 'aws-sdk', '~> 2.3'
s.add_runtime_dependency 'rest-client', '~> 2.0.2'
Expand Down

0 comments on commit ca3b5d3

Please sign in to comment.