Skip to content

Commit

Permalink
prep for 2.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
majormoses committed Mar 27, 2018
1 parent 4276db0 commit 5bf4c6f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
9 changes: 6 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins/community/blob/master/HOW_WE_CHANGELOG.md).

## [Unreleased]
### Fixed
- `check-ssl-hsts-preloadable.rb`: Fixed testing warnings for if a domain can be HSTS preloaded (@rwky)

## [2.0.0] - 2018-03-27
### Breaking Changes
- `check-ssl-qualys.rb`: when you submit a request with caching enabled it will return back a response including an eta key. Rather than sleeping for some arbitrary number of time we now use this key when its greater than `--between-checks` to wait before attempting the next attempt to query. If it is lower or not present we fall back to `--between-checks` (@majormoses)
- `check-ssl-qualys.rb`: new `--timeout` parameter to short circuit slow apis (@majormoses)
Expand All @@ -17,6 +16,9 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
### Added
`check-ssl-qualys.rb`: option `--debug` to enable debug logging (@majormoses)

### Fixed
- `check-ssl-hsts-preloadable.rb`: Fixed testing warnings for if a domain can be HSTS preloaded (@rwky)

## [1.5.0] - 2017-09-26
### Added
- Ruby 2.4.1 testing
Expand Down Expand Up @@ -103,7 +105,8 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
### Added
- initial release

[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/1.5.0...HEAD
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/2.0.0...HEAD
[2.0.0]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/1.5.0...2.0.0
[1.5.0]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/1.4.0...1.5.0
[1.4.0]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/1.3.1...1.4.0
[1.3.1]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/1.3.0...1.3.1
Expand Down
4 changes: 2 additions & 2 deletions lib/sensu-plugins-ssl/version.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module SensuPluginsSSL
module Version
MAJOR = 1
MINOR = 5
MAJOR = 2
MINOR = 0
PATCH = 0

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

0 comments on commit 5bf4c6f

Please sign in to comment.