1
0
Fork 0
mirror of https://github.com/capistrano/capistrano synced 2023-03-27 23:21:18 -04:00

Preparing v3.11.0

This commit is contained in:
Matt Brictson 2018-06-02 20:15:12 -07:00
parent 3cff8cbdfa
commit 1ac86a230d
No known key found for this signature in database
GPG key ID: 2F279EAD1F2ACFAF
3 changed files with 8 additions and 3 deletions

View file

@ -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

View file

@ -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
```

View file

@ -1,3 +1,3 @@
module Capistrano
VERSION = "3.10.2".freeze
VERSION = "3.11.0".freeze
end