releasinator 0.7.5 → 0.7.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/releasinator/version.rb +1 -1
- data/lib/tasks/releasinator.rake +6 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1a30d14364fc2e81873c1a5f018f7af591ef93a3
|
4
|
+
data.tar.gz: 5e4e7bb4fa7f969e32a8b0d82367b8de5da02a65
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3765c609dead1c9d638776aeb154afe02a7a413c9ebc89107691f76d1307cc84c49304744523ebb30e02c34f75dfae488fdfa23a27bb7bf0bbbf7d359451f9d2
|
7
|
+
data.tar.gz: 3a564922de00563111879e69f2fd88e744723e2c92657ff4d8b9c96d1f796a5b226acd1a0ec60b15b564312418d07712a97aa27cf57e6ac6fa1ec385aa63979c
|
data/CHANGELOG.md
CHANGED
data/lib/releasinator/version.rb
CHANGED
data/lib/tasks/releasinator.rake
CHANGED
@@ -175,12 +175,16 @@ end
|
|
175
175
|
desc "release all"
|
176
176
|
task :release => [:"validate:all"] do
|
177
177
|
last_tag_raw = GitUtil.tagged_versions(remote=true, raw_tags=true).last
|
178
|
+
last_tag = last_tag_raw
|
179
|
+
last_tag = last_tag[1..last_tag.size] if last_tag.start_with? "v"
|
178
180
|
|
179
181
|
if !last_tag_raw.nil? # If last tag is nil, at this point, there must be changelog entry, but this is the first releasinator release, proceed.
|
180
182
|
commits_since_tag = GitUtil.commits(last_tag_raw)
|
181
|
-
last_tag = Semantic::Version.new(
|
183
|
+
last_tag = Semantic::Version.new(last_tag)
|
182
184
|
if commits_since_tag.size > 0 # There are new commits to be released
|
183
|
-
|
185
|
+
current_version = @current_release.version
|
186
|
+
current_version = current_version[1..current_version.size] if current_version.start_with? "v"
|
187
|
+
if current_version > last_tag # CHANGELOG.md version is ahead of last tag. The releaser has already updated the changelog, and we've validated it
|
184
188
|
if !Printer.ask_binary("The version from CHANGELOG.md '#{@current_release.version}' is greater than the last tagged version '#{last_tag}'. Have you already updated your version and CHANGELOG.md?")
|
185
189
|
Printer.fail("Update your version and CHANGELOG.md and re-run rake release.")
|
186
190
|
abort()
|