Skip to content

Commit

Permalink
Prepare for v1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jodosha committed Jan 15, 2019
1 parent 7dce509 commit f3c25ea
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,11 @@
# Hanami::Mailer
Mail for Ruby applications

## v1.3.1 - 2019-01-17
### Added
- [Luca Guidi] Official support for Ruby: MRI 2.6
- [Luca Guidi] Support `bundler` 2.0+

## v1.3.0 - 2018-10-24
### Added
- [Ben Bachhuber] Added support for `reply_to`
Expand Down
2 changes: 1 addition & 1 deletion hanami-mailer.gemspec
Expand Up @@ -23,7 +23,7 @@ Gem::Specification.new do |spec|
spec.add_dependency 'tilt', '~> 2.0', '>= 2.0.1'
spec.add_dependency 'mail', '~> 2.6'

spec.add_development_dependency 'bundler'
spec.add_development_dependency 'bundler', '>= 1.6', '< 3'
spec.add_development_dependency 'rake', '~> 12'
spec.add_development_dependency 'rspec', '~> 3.7'
end
2 changes: 1 addition & 1 deletion lib/hanami/mailer/version.rb
@@ -1,6 +1,6 @@
module Hanami
module Mailer
# @since 0.1.0
VERSION = '1.3.0'.freeze
VERSION = '1.3.1'.freeze
end
end
2 changes: 1 addition & 1 deletion spec/unit/hanami/mailer/version_spec.rb
@@ -1,5 +1,5 @@
RSpec.describe "Hanami::Mailer::VERSION" do
it "returns current version" do
expect(Hanami::Mailer::VERSION).to eq("1.3.0")
expect(Hanami::Mailer::VERSION).to eq("1.3.1")
end
end

0 comments on commit f3c25ea

Please sign in to comment.