diff --git a/CHANGELOG.md b/CHANGELOG.md index af038d0..2c37b17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # [master][] * Your contribution here! + +# [1.4.0][] (Jun 2 2018) + * Added option ':assets_manifests' to support custom manifest file path ([#216](https://github.com/capistrano/rails/pull/216)) # [1.3.1][] (Nov 21 2017) @@ -82,7 +85,8 @@ This release simply adds the MIT license to the capistrano-rails gemspec. There Initial release -[master]: https://github.com/capistrano/rails/compare/v1.3.1...HEAD +[master]: https://github.com/capistrano/rails/compare/v1.4.0...HEAD +[1.4.0]: https://github.com/capistrano/rails/compare/v1.3.1...v1.4.0 [1.3.1]: https://github.com/capistrano/rails/compare/v1.3.0...v1.3.1 [1.3.0]: https://github.com/capistrano/rails/compare/v1.2.3...v1.3.0 [1.2.3]: https://github.com/capistrano/rails/compare/v1.2.2...v1.2.3 diff --git a/README.md b/README.md index 5a81971..43ae07b 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Add these Capistrano gems to your application's Gemfile using `require: false`: ```ruby group :development do gem "capistrano", "~> 3.10", require: false - gem "capistrano-rails", "~> 1.3", require: false + gem "capistrano-rails", "~> 1.4", require: false end ``` diff --git a/capistrano-rails.gemspec b/capistrano-rails.gemspec index 9c252cb..efbc78d 100644 --- a/capistrano-rails.gemspec +++ b/capistrano-rails.gemspec @@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) Gem::Specification.new do |gem| gem.name = "capistrano-rails" - gem.version = '1.3.1' + gem.version = '1.4.0' gem.authors = ["Tom Clements", "Lee Hambley", "Kir Shatrov"] gem.email = ["seenmyfate@gmail.com", "lee.hambley@gmail.com", "shatrov@me.com"] gem.description = %q{Rails specific Capistrano tasks}