Skip to content

Commit 5bf4c6f

Browse files
committed
prep for 2.0.0 release
1 parent 4276db0 commit 5bf4c6f

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@ 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-
### Fixed
8-
- `check-ssl-hsts-preloadable.rb`: Fixed testing warnings for if a domain can be HSTS preloaded (@rwky)
97

8+
## [2.0.0] - 2018-03-27
109
### Breaking Changes
1110
- `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)
1211
- `check-ssl-qualys.rb`: new `--timeout` parameter to short circuit slow apis (@majormoses)
@@ -17,6 +16,9 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
1716
### Added
1817
`check-ssl-qualys.rb`: option `--debug` to enable debug logging (@majormoses)
1918

19+
### Fixed
20+
- `check-ssl-hsts-preloadable.rb`: Fixed testing warnings for if a domain can be HSTS preloaded (@rwky)
21+
2022
## [1.5.0] - 2017-09-26
2123
### Added
2224
- Ruby 2.4.1 testing
@@ -103,7 +105,8 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
103105
### Added
104106
- initial release
105107

106-
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/1.5.0...HEAD
108+
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/2.0.0...HEAD
109+
[2.0.0]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/1.5.0...2.0.0
107110
[1.5.0]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/1.4.0...1.5.0
108111
[1.4.0]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/1.3.1...1.4.0
109112
[1.3.1]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/1.3.0...1.3.1

lib/sensu-plugins-ssl/version.rb

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

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

0 commit comments

Comments
 (0)