diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c37b17..923f29a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ * Your contribution here! +# [1.5.0][] (May 15 2020) + +* Handle restore of multiple asset manifests on rollback ([#226](https://github.com/capistrano/rails/pull/226)) + # [1.4.0][] (Jun 2 2018) * Added option ':assets_manifests' to support custom manifest file path ([#216](https://github.com/capistrano/rails/pull/216)) @@ -85,7 +89,8 @@ This release simply adds the MIT license to the capistrano-rails gemspec. There Initial release -[master]: https://github.com/capistrano/rails/compare/v1.4.0...HEAD +[master]: https://github.com/capistrano/rails/compare/v1.5.0...HEAD +[1.5.0]: https://github.com/capistrano/rails/compare/v1.4.0...v1.5.0 [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 diff --git a/README.md b/README.md index fba6ead..5bcd495 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.4", require: false + gem "capistrano-rails", "~> 1.5", require: false end ``` diff --git a/capistrano-rails.gemspec b/capistrano-rails.gemspec index ad6d2ca..67cc36f 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.4.0' + gem.version = '1.5.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}