Skip to content

Commit b9e422d

Browse files
committed
prepare v2.1.0 release
1 parent 9a971ef commit b9e422d

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [2.1.0]
6+
7+
- Use `ActionMailer::InlinePreviewInterceptor` to facilitate integration with other gems like premailer (#55)
8+
- Move CI from Travis to GitHub Actions
9+
510
## [2.0.2]
611

712
- UI: Hide delivery form if `allow_delivery` is false (#54)
@@ -157,6 +162,7 @@ All notable changes to this project will be documented in this file.
157162

158163
- First real usable release :tada:
159164

165+
[2.1.0]: https://github.com/markets/maily/compare/v2.0.2...v2.1.0
160166
[2.0.2]: https://github.com/markets/maily/compare/v2.0.1...v2.0.2
161167
[2.0.1]: https://github.com/markets/maily/compare/v2.0.0...v2.0.1
162168
[2.0.0]: https://github.com/markets/maily/compare/v1.0.0...v2.0.0

lib/maily/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Maily
2-
VERSION = "2.0.2"
2+
VERSION = "2.1.0"
33
end

spec/email_spec.rb

+2-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,8 @@
9292

9393
email.arguments = ["asd"]
9494
expect(email.validate_arguments[1]).to match(/email requires at the most 0 arguments, passed 1/)
95-
email.arguments = nil
95+
96+
email.arguments = nil # reset arguments for future calls
9697
end
9798

9899
it 'emails with arguments required' do

0 commit comments

Comments
 (0)