diff --git a/CHANGELOG.md b/CHANGELOG.md index fb16d063..63e3110e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,11 +16,16 @@ gem "capistrano", github: "capistrano/capistrano", require: false ## [master] -[master]: https://github.com/capistrano/capistrano/compare/v3.10.2...HEAD +[master]: https://github.com/capistrano/capistrano/compare/v3.11.0...HEAD * Your contribution here! + +## [`3.11.0`] (2018-06-02) + * [#1972](https://github.com/capistrano/capistrano/pull/1972): fallback ask to default when used in non interactive session +[`3.11.0`]: https://github.com/capistrano/capistrano/compare/v3.10.2...v3.11.0 + ## [`3.10.2`] (2018-04-15) [`3.10.2`]: https://github.com/capistrano/capistrano/compare/v3.10.1...v3.10.2 diff --git a/README.md b/README.md index a052db93..4eef19c9 100644 --- a/README.md +++ b/README.md @@ -107,7 +107,7 @@ Add Capistrano to your project's Gemfile using `require: false`: ``` ruby group :development do - gem "capistrano", "~> 3.10", require: false + gem "capistrano", "~> 3.11", require: false end ``` diff --git a/lib/capistrano/version.rb b/lib/capistrano/version.rb index 8b46f9f5..731ac891 100644 --- a/lib/capistrano/version.rb +++ b/lib/capistrano/version.rb @@ -1,3 +1,3 @@ module Capistrano - VERSION = "3.10.2".freeze + VERSION = "3.11.0".freeze end