capistrano-net_storage 0.2.2 → 0.2.3

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: 9b6b794b91488406b3aed59b9670ebd91307c505
4
- data.tar.gz: d55ffd27d570fe23544eaa2a69131f3d619aad75
3
+ metadata.gz: 53e177ed090b97af1d033a7dc1fdea410c46a833
4
+ data.tar.gz: 71d74fb709896d1b665bc38baf2556c42ac4bf90
5
5
  SHA512:
6
- metadata.gz: 527b5c8680f32bd814dda5164643f72428820c4e72e88d77292a0b68d86d5b55899ba0bf11afc1fd82a248b7b0b58409d9f4c1a9f6216877ad80c7878d725306
7
- data.tar.gz: dfcd53193efdbccf5e2a859f28489696d60ac84f98ceb67b9a1863c370ac5b4fa5e1bfaf6c55f58bb5ccb1079447a33b7e41297e610412c8bc74c87126851f8f
6
+ metadata.gz: 432d338ec48a2ca45a2e4916a5f4d339dccb6602f862e83b513a4b800e4ce6a5ffdd1da0544f29c1d9a07a977cc638fd46fb84290e800afd73eeb03d9ab4b1ff
7
+ data.tar.gz: a51eac7a59b4ffda32de534158ea09f63f1e837aa568a470181a55de143242134a58651159ed4a5fb2907e602f4ba0c3c1c5dd3df663e95891d7494c652ba3f4
data/CHANGELOG.md CHANGED
@@ -1,15 +1,22 @@
1
+ ## 0.2.3 (2017/5/10)
2
+
3
+ Minor Modify:
4
+
5
+ - Use `git rev-list` instead of `git rev-parse` to handle annotated tag better
6
+ (#3) @aeroastro
7
+
1
8
  ## 0.2.2 (2017/5/9)
2
9
 
3
10
  Feature:
4
11
 
5
12
  - Add a framework task `net_storage:cleanup_remote_release` to clean up old
6
- archives on remote storage (#2)
13
+ archives on remote storage (#2) @progrhyme
7
14
 
8
15
  ## 0.2.1 (2017/4/21)
9
16
 
10
17
  Internal Change:
11
18
 
12
- - Use `run_locally` instead of `on :local` (#1)
19
+ - Use `run_locally` instead of `on :local` (#1) @progrhyme
13
20
 
14
21
  ## 0.2.0 (2017/4/12)
15
22
 
@@ -33,7 +33,7 @@ class Capistrano::NetStorage::SCM::Git < Capistrano::NetStorage::SCM::Base
33
33
  c = config
34
34
  run_locally do
35
35
  within c.local_mirror_path do
36
- set :current_revision, capture(:git, "rev-parse #{fetch(:branch)}")
36
+ set :current_revision, capture(:git, "rev-list --max-count=1 #{fetch(:branch)}")
37
37
  end
38
38
  end
39
39
  end
@@ -1,5 +1,5 @@
1
1
  module Capistrano
2
2
  module NetStorage
3
- VERSION = '0.2.2'
3
+ VERSION = '0.2.3'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-net_storage
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - progrhyme
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-05-09 00:00:00.000000000 Z
11
+ date: 2017-05-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: capistrano