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:
9
9
install :
10
10
- bundle install
11
11
rvm :
12
+ - 2.3.0
12
13
- 2.4.1
13
14
notifications :
14
15
email :
Original file line number Diff line number Diff line change @@ -4,8 +4,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
4
4
This CHANGELOG follows the format listed [ here] ( https://github.com/sensu-plugins/community/blob/master/HOW_WE_CHANGELOG.md ) .
5
5
6
6
## [ 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 `
9
11
10
12
## [ 1.4.6] - 2018-05-03
11
13
### Fixed
@@ -147,7 +149,8 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
147
149
### Added
148
150
- initial release
149
151
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
151
154
[ 1.4.6 ] : https://github.com/sensu-plugins/sensu-plugins-postgres/compare/1.4.5...1.4.6
152
155
[ 1.4.5 ] : https://github.com/sensu-plugins/sensu-plugins-postgres/compare/1.4.4...1.4.5
153
156
[ 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 1
1
module SensuPluginsPostgres
2
2
module Version
3
- MAJOR = 1
4
- MINOR = 4
5
- PATCH = 6
3
+ MAJOR = 2
4
+ MINOR = 0
5
+ PATCH = 0
6
6
7
7
VER_STRING = [ MAJOR , MINOR , PATCH ] . compact . join ( '.' )
8
8
end
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ Gem::Specification.new do |s| # rubocop:disable Metrics/BlockLength
28
28
s . platform = Gem ::Platform ::RUBY
29
29
s . post_install_message = 'You can use the embedded Ruby by setting EMBEDDED_RUBY=true in /etc/default/sensu'
30
30
s . require_paths = [ 'lib' ]
31
- s . required_ruby_version = '>= 2.4.1 '
31
+ s . required_ruby_version = '>= 2.3.0 '
32
32
33
33
s . summary = 'Sensu plugins for postgres'
34
34
s . test_files = s . files . grep ( %r{^(test|spec|features)/} )
You can’t perform that action at this time.
0 commit comments