releasinator 0.7.0 → 0.7.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/CHANGELOG.md +4 -0
- data/lib/releasinator/version.rb +1 -1
- data/lib/tasks/releasinator.rake +2 -0
- 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: 0d03117c03958ef445a45165cebb26d3057540c9
|
|
4
|
+
data.tar.gz: b3966ec87539803a9af7c09c2fa9de383f401978
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d52a4168ccdd50b533dbce40c7d709eec5c860fbab99f8c9cf0341c3108c60bb2519a42a945aa3491aa90a25a11cfa5bf481493b594ead8132cc5de139fecd2c
|
|
7
|
+
data.tar.gz: d187640b4b97eb2140b535fa0c9fa1e4c0323e7b06ba44f37e347ce0e459d2a3306bc18f07b8036105c712f31cba0299d63260934bf22a44259c34586210a262
|
data/CHANGELOG.md
CHANGED
data/lib/releasinator/version.rb
CHANGED
data/lib/tasks/releasinator.rake
CHANGED
|
@@ -201,6 +201,8 @@ task :release => [:"validate:all"] do
|
|
|
201
201
|
elsif !Printer.ask_binary("There are no new commits since last tagged version '#{last_tag}'. Are you sure you want to release?")
|
|
202
202
|
abort()
|
|
203
203
|
end
|
|
204
|
+
elsif !Printer.ask_binary("This release (#{@current_release.version}) is the first release. Do you want to continue?")
|
|
205
|
+
abort()
|
|
204
206
|
end
|
|
205
207
|
|
|
206
208
|
[:"local:build",:"pm:all",:"downstream:all",:"local:push",:"docs:all"].each do |task|
|