Skip to content

Commit

Permalink
Prepare for 0.14.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
temochka committed Oct 21, 2016
1 parent 0c96ece commit d4ec04d
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.rdoc
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
= Changelog

== 0.14.0

* Update the postmark gem dependency to 1.9.x.

== 0.13.0

* Update the postmark gem dependency to 1.8.x.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ For Rails 2.3 please take a look at [version 0.4](https://github.com/wildbit/pos
Add this to your Gemfile: (change version numbers if needed)

``` ruby
gem 'postmark-rails', '~> 0.13.0'
gem 'postmark-rails', '~> 0.14.0'
```

Don’t forget to run `bundle install` command every time you change something in the Gemfile.
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/Gemfile.actionmailer-3.0.x
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ gemspec :path => '../'

gem 'json', '< 2.0.0'
gem 'rake', '< 11.0.0'
gem 'postmark', '~> 1.8.0', :path => ENV['POSTMARK_GEM_PATH']
gem 'postmark', '~> 1.9.0', :path => ENV['POSTMARK_GEM_PATH']
gem 'actionmailer', '~> 3.0.0'
gem 'rack-cache', '~> 1.2.0'

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/Gemfile.actionmailer-3.2.x
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ gemspec :path => '../'

gem 'json', '< 2.0.0'
gem 'rake', '< 11.0.0'
gem 'postmark', '~> 1.8.0', :path => ENV['POSTMARK_GEM_PATH']
gem 'postmark', '~> 1.9.0', :path => ENV['POSTMARK_GEM_PATH']
gem 'actionmailer', :github => 'rails', :branch => '3-2-stable'
gem 'i18n', '~> 0.6.0'
gem 'rack-cache', '~> 1.2.0'
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/Gemfile.actionmailer-4.0.x
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ source "https://rubygems.org"
gemspec :path => '../'

gem 'json', '< 2.0.0'
gem 'postmark', '~> 1.8.0', path: ENV['POSTMARK_GEM_PATH']
gem 'postmark', '~> 1.9.0', path: ENV['POSTMARK_GEM_PATH']
gem 'actionmailer', '~> 4.0.0'

group :test do
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/Gemfile.actionmailer-4.1.x
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ source "https://rubygems.org"
gemspec :path => '../'

gem 'json', '< 2.0.0'
gem 'postmark', '~> 1.8.0', path: ENV['POSTMARK_GEM_PATH']
gem 'postmark', '~> 1.9.0', path: ENV['POSTMARK_GEM_PATH']
gem 'actionmailer', '~> 4.1.0'

group :test do
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/Gemfile.actionmailer-4.2.x
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ source "https://rubygems.org"
gemspec :path => '../'

gem 'json', '< 2.0.0'
gem 'postmark', '~> 1.8.0', path: ENV['POSTMARK_GEM_PATH']
gem 'postmark', '~> 1.9.0', path: ENV['POSTMARK_GEM_PATH']
gem 'actionmailer', '~> 4.2.0'

group :test do
Expand Down
2 changes: 1 addition & 1 deletion lib/postmark-rails/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module PostmarkRails
VERSION = '0.13.0'
VERSION = '0.14.0'
end
2 changes: 1 addition & 1 deletion postmark-rails.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Gem::Specification.new do |s|
s.rdoc_options = ["--charset=UTF-8"]

s.add_dependency('actionmailer', ">= 3.0.0")
s.add_dependency('postmark', "~> 1.8.0")
s.add_dependency('postmark', "~> 1.9.0")

s.add_development_dependency("rake")

Expand Down

0 comments on commit d4ec04d

Please sign in to comment.