bumper_pusher 0.1.5 → 0.1.6
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/bumper_pusher/bumper.rb +5 -3
- data/lib/bumper_pusher/version.rb +1 -1
- 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: c67845e62dc87a1517a17ccc2c6930846050f76d
|
|
4
|
+
data.tar.gz: fb062fa943fd15b1804b42bcb478d832b05f0930
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 277bf1d9fd293d0a91e8bcd51895cef4441d7829885431ed1fd6b1554e1cbc426c92a5356cf0a14b978e60e47df0a9cc2198ff33611eecc395b311757a8648ef
|
|
7
|
+
data.tar.gz: 0da7541b746ce913be9b8e750871ddef97a4ed631cd5a8e1bc70b58fc881f42144ac5aa4e16b49f42d2736aed4d769d0e63de852e7ada28acadebbad959f5c2b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.1.5] (https://github.com/skywinder/bumper_pusher/tree/0.1.5)
|
|
4
|
+
#### 09/12/14
|
|
5
|
+
## [0.0.1] (https://github.com/skywinder/bumper_pusher/tree/0.0.1)
|
|
6
|
+
#### 24/11/14
|
|
3
7
|
## [0.1.4] (https://github.com/skywinder/bumper_pusher/tree/0.1.4)
|
|
4
8
|
#### 19/11/14
|
|
5
9
|
- *Merged pull-request:* Add check and warrning message, if you try to bump not from master branch [\#4](https://github.com/skywinder/bumper_pusher/pull/4) ([skywinder](https://github.com/skywinder))
|
data/lib/bumper_pusher/bumper.rb
CHANGED
|
@@ -272,10 +272,12 @@ module BumperPusher
|
|
|
272
272
|
|
|
273
273
|
if is_gitflow_installed
|
|
274
274
|
execute_line_if_not_dry_run("git flow release finish -n #{bumped_version}")
|
|
275
|
+
execute_line_if_not_dry_run('git checkout master')
|
|
276
|
+
execute_line_if_not_dry_run("git tag #{bumped_version}")
|
|
277
|
+
execute_line_if_not_dry_run('git checkout develop')
|
|
278
|
+
else
|
|
279
|
+
execute_line_if_not_dry_run("git tag #{bumped_version}")
|
|
275
280
|
end
|
|
276
|
-
|
|
277
|
-
execute_line_if_not_dry_run("git tag #{bumped_version}")
|
|
278
|
-
|
|
279
281
|
end
|
|
280
282
|
|
|
281
283
|
if @options[:push]
|