Skip to content

Commit 2d05c74

Browse files
committed
prep for 2.0.0 release
1 parent 036caf6 commit 2d05c74

3 files changed

Lines changed: 13 additions & 8 deletions

File tree

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44

55
#### General
66

7-
- [ ] Update Changelog following the conventions laid out on [Keep A Changelog](http://keepachangelog.com/)
7+
- [ ] Update Changelog following the conventions laid out [here](https://github.com/sensu-plugins/community/blob/master/HOW_WE_CHANGELOG.md)
88

99
- [ ] Update README with any necessary configuration snippets
1010

1111
- [ ] Binstubs are created if needed
1212

1313
- [ ] RuboCop passes
1414

15-
- [ ] Existing tests pass
15+
- [ ] Existing tests pass
1616

1717
#### New Plugins
1818

@@ -24,5 +24,4 @@
2424

2525
#### Purpose
2626

27-
#### Known Compatablity Issues
28-
27+
#### Known Compatibility Issues

CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
# Change Log
22
This project adheres to [Semantic Versioning](http://semver.org/).
33

4-
This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/)
4+
This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins/community/blob/master/HOW_WE_CHANGELOG.md)
55

66
## [Unreleased]
7+
8+
## [2.0.0] - 2018-03-31
79
### Breaking Changes
810
- dropped ruby 2.1 support (@yuri-zubov sponsored by Actility, https://www.actility.com)
911
- added `rest-client` as a dependency which requires you to have a local c compiler present to install this plugin (@yuri-zubov sponsored by Actility, https://www.actility.com)
@@ -16,6 +18,9 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
1618
- Added ability to get metrics from VertX (@yuri-zubov sponsored by Actility, https://www.actility.com)
1719
- Added health-check VertX (@yuri-zubov sponsored by Actility, https://www.actility.com)
1820

21+
### Changed
22+
- updated Changelog guidelines location (@majormoses)
23+
1924
## [1.3.0] - 2017-09-05
2025
### Added
2126
- option `-l` to change if you wish to grab the max or the current heap limits (@Juan-Moreno)
@@ -83,7 +88,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
8388
### Added
8489
- initial release
8590

86-
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-java/compare/1.3.0...HEAD
91+
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-java/compare/2.0.0...HEAD
92+
[2.0.0]: https://github.com/sensu-plugins/sensu-plugins-java/compare/1.3.0...2.0.0
8793
[1.3.0]: https://github.com/sensu-plugins/sensu-plugins-java/compare/1.2.0...1.3.0
8894
[1.2.0]: https://github.com/sensu-plugins/sensu-plugins-java/compare/1.1.0...1.2.0
8995
[1.1.0]: https://github.com/sensu-plugins/sensu-plugins-java/compare/1.0.0...1.1.0

lib/sensu-plugins-java/version.rb

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

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

0 commit comments

Comments
 (0)