releasinator 0.7.4 → 0.7.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 015abca9bbd49c8b77ab88cb4f5b8215f5c9dd91
4
- data.tar.gz: 5869bd2001da0953bc963ba9c2f7e130a27e4d08
3
+ metadata.gz: ab00cae0a63186d6b3e84eb7ce327e61b782d020
4
+ data.tar.gz: 73351d0123b24a2b6ba7fde3551264df93721a3b
5
5
  SHA512:
6
- metadata.gz: 60c1097986f71a53297a7988d4c4bd05054a8411278a9a5c614627d0f026810b2aab88dea97453142e10e9a255a27394319b8ae1003266c625fdf08e71d3c8ff
7
- data.tar.gz: 444ac151b43735e96c95031d5a2b725902b5e5d3f85a135035a0071a7bd7ab30c7505bbf520f470deb3572f5419c2f774bf81f9a52b222fc56127d93bb12576b
6
+ metadata.gz: f754981496e5bef65d1ea26a1423fbac25649197bac297f72c6c87316055d69999a5942892454bdd4a9d01d4fac52a702bb62a020ff32e46d2ab2aa7cfdd223e
7
+ data.tar.gz: 94bc361bbd760291cd451a8965293ce7db5b94e20daa10a25c183f533d758e0519af9abff8a620c33144f5c20b8f192e1ec2bad3c6a131da6236f7feed63bf82
data/CHANGELOG.md CHANGED
@@ -1,6 +1,10 @@
1
1
  Releasinator release notes
2
2
  ==========================
3
3
 
4
+ 0.7.5
5
+ -----
6
+ * Use clean semantic version for doing comparisions instead of "vX.Y.Z".
7
+
4
8
  0.7.4
5
9
  -----
6
10
  * Fix tagged version parsing to support getting the raw tag value.
@@ -1,3 +1,3 @@
1
1
  module Releasinator
2
- VERSION = "0.7.4"
2
+ VERSION = "0.7.5"
3
3
  end
@@ -174,12 +174,13 @@ end
174
174
 
175
175
  desc "release all"
176
176
  task :release => [:"validate:all"] do
177
- last_tag = GitUtil.tagged_versions(remote=true, raw_tags=true).last
177
+ last_tag_raw = GitUtil.tagged_versions(remote=true, raw_tags=true).last
178
178
 
179
- if !last_tag.nil? # If last tag is nil, at this point, there must be changelog entry, but this is the first releasinator release, proceed.
180
- commits_since_tag = GitUtil.commits(last_tag)
179
+ 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
+ commits_since_tag = GitUtil.commits(last_tag_raw)
181
+ last_tag = Semantic::Version.new(GitUtil.tagged_versions(remote=true).last)
181
182
  if commits_since_tag.size > 0 # There are new commits to be released
182
- if @current_release.version > Semantic::Version.new(last_tag) # CHANGELOG.md version is ahead of last tag. The releaser has already updated the changelog, and we've validated it
183
+ if @current_release.version > last_tag # CHANGELOG.md version is ahead of last tag. The releaser has already updated the changelog, and we've validated it
183
184
  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?")
184
185
  Printer.fail("Update your version and CHANGELOG.md and re-run rake release.")
185
186
  abort()
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: releasinator
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.4
4
+ version: 0.7.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - PayPal