File tree Expand file tree Collapse file tree 4 files changed +11
-7
lines changed
lib/sensu-plugins-postgres Expand file tree Collapse file tree 4 files changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ before_install:
99install :
1010- bundle install
1111rvm :
12+ - 2.3.0
1213- 2.4.1
1314notifications :
1415 email :
Original file line number Diff line number Diff line change @@ -4,8 +4,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44This CHANGELOG follows the format listed [ here] ( https://github.com/sensu-plugins/community/blob/master/HOW_WE_CHANGELOG.md ) .
55
66## [ Unreleased]
7- ### Breaking changes
8- - Remove unsupported Rubies: 2.1, 2.2, 2.3
7+
8+ ## [ 2.0.0] - 2018-10-15
9+ ### Breaking Changes
10+ - Remove unsupported Rubies: ` < 2.3.0 `
911
1012## [ 1.4.6] - 2018-05-03
1113### Fixed
@@ -147,7 +149,8 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
147149### Added
148150- initial release
149151
150- [ Unreleased ] : https://github.com/sensu-plugins/sensu-plugins-postgres/compare/1.4.6...HEAD
152+ [ Unreleased ] : https://github.com/sensu-plugins/sensu-plugins-postgres/compare/2.0.0...HEAD
153+ [ 2.0.0 ] : https://github.com/sensu-plugins/sensu-plugins-postgres/compare/1.4.6...2.0.0
151154[ 1.4.6 ] : https://github.com/sensu-plugins/sensu-plugins-postgres/compare/1.4.5...1.4.6
152155[ 1.4.5 ] : https://github.com/sensu-plugins/sensu-plugins-postgres/compare/1.4.4...1.4.5
153156[ 1.4.4 ] : https://github.com/sensu-plugins/sensu-plugins-postgres/compare/1.4.3...1.4.4
Original file line number Diff line number Diff line change 11module SensuPluginsPostgres
22 module Version
3- MAJOR = 1
4- MINOR = 4
5- PATCH = 6
3+ MAJOR = 2
4+ MINOR = 0
5+ PATCH = 0
66
77 VER_STRING = [ MAJOR , MINOR , PATCH ] . compact . join ( '.' )
88 end
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ Gem::Specification.new do |s| # rubocop:disable Metrics/BlockLength
2828 s . platform = Gem ::Platform ::RUBY
2929 s . post_install_message = 'You can use the embedded Ruby by setting EMBEDDED_RUBY=true in /etc/default/sensu'
3030 s . require_paths = [ 'lib' ]
31- s . required_ruby_version = '>= 2.4.1 '
31+ s . required_ruby_version = '>= 2.3.0 '
3232
3333 s . summary = 'Sensu plugins for postgres'
3434 s . test_files = s . files . grep ( %r{^(test|spec|features)/} )
You can’t perform that action at this time.
0 commit comments