capistrano 3.7.0 → 3.7.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ce22b5f5826e88b5fd92b3369c02344f20e2191e
4
- data.tar.gz: 491397aab719879777bec4153c3125575f86e62a
3
+ metadata.gz: c06ca713a10918695c9a37ae1cb67c3cc567e6bc
4
+ data.tar.gz: 99aac73258a129add7dd88eabcc6d96740d796f0
5
5
  SHA512:
6
- metadata.gz: 37864d78dd2d14478f0e9edcb316ac5e68fe5dc83b02bfd4017b1790350b26d1c929f6b94890fe351101fd05257f4bf8ce427fb8f5be0d1758e36e48fcc70fd5
7
- data.tar.gz: 6eec3f49c1e4867137d3d266d533c44bcba2bc076d1e8d003e51bcc8735a14f613ef8c49a86f69417cd40deca95b2827115885289113e490ea8bf0940639c50b
6
+ metadata.gz: b21deea03c5a2b813e4e6fd078db5c43edf0e1482d94b46038a6e12e8a998bf5bd10e8460fdb438fa30405339b005674ef436516008a97acf7804125e8bf6886
7
+ data.tar.gz: a53999efd7cf1c188fe18b707ae01dff70dd2c30b39dff44a5b92a61177cfb0c1c82b2c000c4e98e5cf46f574ed594923fefb40caa379f82fcf9f3126f497a37
@@ -4,10 +4,22 @@ Reverse Chronological Order:
4
4
 
5
5
  ## master
6
6
 
7
- https://github.com/capistrano/capistrano/compare/v3.7.0...HEAD
7
+ https://github.com/capistrano/capistrano/compare/v3.7.1...HEAD
8
8
 
9
9
  * Your contribution here!
10
10
 
11
+ ## `3.7.1` (2016-12-16)
12
+
13
+ https://github.com/capistrano/capistrano/compare/v3.7.0...v3.7.1
14
+
15
+ ### Potentially breaking changes:
16
+
17
+ * None
18
+
19
+ ### Fixes:
20
+
21
+ * Fixed a bug with mercurial deploys failing due to an undefined variable
22
+
11
23
  ## `3.7.0` (2016-12-10)
12
24
 
13
25
  https://github.com/capistrano/capistrano/compare/v3.6.1...v3.7.0
@@ -1,16 +1,5 @@
1
1
  # Capistrano 3.7.0 upgrade guide
2
2
 
3
- Capistrano 3.7.0 has not yet been released. This guide serves as a preview of
4
- what is *planned* for 3.7.0, so that you can be prepared to update your
5
- Capistrano deployment if necessary once it becomes available.
6
-
7
- If you wish to try the new 3.7.0 behavior today, you can do so by using the
8
- `master` branch in your Gemfile:
9
-
10
- ```ruby
11
- gem "capistrano", :github => "capistrano/capistrano"
12
- ```
13
-
14
3
  ## The :scm variable is deprecated
15
4
 
16
5
  Up until now, Capistrano's SCM was configured using the `:scm` variable:
@@ -28,7 +28,7 @@ namespace :hg do
28
28
  task update: :'hg:clone' do
29
29
  on release_roles :all do
30
30
  within repo_path do
31
- hr.update_mirror
31
+ hg_plugin.update_mirror
32
32
  end
33
33
  end
34
34
  end
@@ -1,3 +1,3 @@
1
1
  module Capistrano
2
- VERSION = "3.7.0".freeze
2
+ VERSION = "3.7.1".freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.7.0
4
+ version: 3.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tom Clements
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-12-10 00:00:00.000000000 Z
12
+ date: 2016-12-16 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: airbrussh