File tree Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -4,9 +4,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).
4
4
This CHANGELOG follows the format listed at [ Keep A Changelog] ( http://keepachangelog.com/ )
5
5
6
6
## [ Unreleased]
7
+
8
+ ## [ 1.0.0] - 2016-06-23
7
9
### Fixed
8
10
- fixing timeout deprecation for ruby 2.3.0
9
- - fixing undefined local variable or method params error ( handler-mailer-mailgun.rb/handler-mailer-ses.rb)
11
+ - handler-mailer-mailgun.rb/handler-mailer-ses.rb: fixing undefined local variable or method params error
10
12
11
13
### Removed
12
14
- Support for Ruby 1.9.3; Added support for Ruby 2.3.0
@@ -77,9 +79,10 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
77
79
### Added
78
80
- initial release
79
81
80
- [ Unreleased ] : https://github.com/sensu-plugins/sensu-plugins-mailer/compare/0.3.1...HEAD
81
- [ 0.3.1 ] : https://github.com/sensu-plugins/sensu-plugins-mailer/compare/v0.3.0...0.3.1
82
- [ 0.3.0 ] : https://github.com/sensu-plugins/sensu-plugins-mailer/compare/v0.2.0...0.3.0
82
+ [ Unreleased ] : https://github.com/sensu-plugins/sensu-plugins-mailer/compare/1.0.0...HEAD
83
+ [ 1.0.0 ] : https://github.com/sensu-plugins/sensu-plugins-mailer/compare/0.3.1...1.0.0
84
+ [ 0.3.1 ] : https://github.com/sensu-plugins/sensu-plugins-mailer/compare/0.3.0...0.3.1
85
+ [ 0.3.0 ] : https://github.com/sensu-plugins/sensu-plugins-mailer/compare/0.2.0...0.3.0
83
86
[ 0.2.0 ] : https://github.com/sensu-plugins/sensu-plugins-mailer/compare/v0.1.5...0.2.0
84
87
[ 0.1.5 ] : https://github.com/sensu-plugins/sensu-plugins-mailer/compare/0.1.4...v0.1.5
85
88
[ 0.1.4 ] : https://github.com/sensu-plugins/sensu-plugins-mailer/compare/0.1.3...0.1.4
Original file line number Diff line number Diff line change 1
1
module SensuPluginsMailer
2
2
module Version
3
- MAJOR = 0
4
- MINOR = 3
5
- PATCH = 1
3
+ MAJOR = 1
4
+ MINOR = 0
5
+ PATCH = 0
6
6
7
7
VER_STRING = [ MAJOR , MINOR , PATCH ] . compact . join ( '.' )
8
8
end
You can’t perform that action at this time.
0 commit comments