Skip to content

Commit 870c805

Browse files
committed
prep for 2.0.0 release
1 parent cdbe126 commit 870c805

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ before_install:
99
install:
1010
- bundle install
1111
rvm:
12+
- 2.3.0
1213
- 2.4.1
1314
notifications:
1415
email:

CHANGELOG.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44
This 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

lib/sensu-plugins-postgres/version.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module 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

sensu-plugins-postgres.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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)/})

0 commit comments

Comments
 (0)