releasecop 0.0.12 → 0.0.13
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/releasecop/comparison.rb +1 -1
- data/lib/releasecop/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: acbb3de308ca2133630425cc039aa7dde8115aa91b89b2c299bd8f8cc12b018b
|
4
|
+
data.tar.gz: 179650ad314f35f899824cecd2a6c4f77650dc012717336722bac0675f0acc0c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 86c215ffcf3846120061fb3698f46e314ab4cdd1f8beaf25a2e75c7f45e34597bdc51aadc4ccb9afd394168d66960fd86cc296227d31f2b09d3ea4365aacf385
|
7
|
+
data.tar.gz: afa204f77d712debbe88ddc59335d6bd5eb9fd401abacc57071a0b024a8b3174de854d5602bab031b427f12fee5756bb06a07abab04c166fdfd743ffe4d8830d
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,14 @@
|
|
2
2
|
------------
|
3
3
|
* Your contribution here...
|
4
4
|
|
5
|
+
0.0.13 (2018-11-15)
|
6
|
+
---
|
7
|
+
* Add email to diff output (081d270)
|
8
|
+
|
9
|
+
0.0.12 (2018-11-14)
|
10
|
+
---
|
11
|
+
* (Fixes)
|
12
|
+
|
5
13
|
0.0.11 (2018-11-14)
|
6
14
|
---
|
7
15
|
* Allow AWS credentials to be customized per manifest item (e6397b4)
|
@@ -18,7 +18,7 @@ module Releasecop
|
|
18
18
|
private
|
19
19
|
|
20
20
|
def log
|
21
|
-
`git log #{@behind.for_rev_range}..#{@ahead.for_rev_range} --pretty=format:"%h %ad %s (%an)" --date=short --no-merges`
|
21
|
+
`git log #{@behind.for_rev_range}..#{@ahead.for_rev_range} --pretty=format:"%h %ad %s (%an, %ae)" --date=short --no-merges`
|
22
22
|
end
|
23
23
|
end
|
24
24
|
end
|
data/lib/releasecop/version.rb
CHANGED