hu 1.2.0 → 1.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/hu/deploy.rb +5 -3
- data/lib/hu/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: eeabdbf883ca4a9e6c41f8e425aec5d8c529bc6a
|
4
|
+
data.tar.gz: fb133d0c59aa7c4bee0b4efc96dca6c0c2d1d399
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5569e9516be9871224ae944f3eafa59ab7436736df9684ebab87ba97435cf3cd1ffd6cd80b53e2ba610e807c1eb60ed3a6377c0662cd2e425fe482ba31c115f9
|
7
|
+
data.tar.gz: 3f5cdb68bf629bfa24ab08ce75ba23041763c5bdd3efa7101fbe8b76a426e18b2d8d6546d2a3df653aaaddd4f0e6ecdd558d413c1726fcfba90348af3613f65f
|
data/lib/hu/deploy.rb
CHANGED
@@ -98,9 +98,11 @@ module Hu
|
|
98
98
|
if release_branch_exists
|
99
99
|
puts "\nThis release will be "+release_tag.color(:red).bright
|
100
100
|
unless highest_version == 'v0.0.0'
|
101
|
-
changelog=`git log --pretty=format:" - %s" #{highest_version}..HEAD` unless highest_version == 'v0.0.0'
|
102
|
-
|
103
|
-
|
101
|
+
changelog=`git log --pretty=format:" - %s" #{highest_version}..HEAD 2>/dev/null` unless highest_version == 'v0.0.0'
|
102
|
+
unless changelog.empty?
|
103
|
+
puts "\nChanges since "+highest_version.bright+":"
|
104
|
+
puts changelog
|
105
|
+
end
|
104
106
|
end
|
105
107
|
puts
|
106
108
|
else
|
data/lib/hu/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hu
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- moe
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-05-
|
11
|
+
date: 2016-05-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|