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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c347d01e39fac9f0a695a8c51d5002cd19a7c782
4
- data.tar.gz: dc287b2ff9f1f167d6c76476dabd2fbd9cae4b30
3
+ metadata.gz: c67845e62dc87a1517a17ccc2c6930846050f76d
4
+ data.tar.gz: fb062fa943fd15b1804b42bcb478d832b05f0930
5
5
  SHA512:
6
- metadata.gz: 4b6e5a4d52ae7ef99a685ba1b4255b862f00887079141abf8c376dc353fef6a0ac9d5a23a4b3efb4b7e8990c9d2fbfe6a7ceba013f6268f00fe13f6ea88b8a0b
7
- data.tar.gz: ec4723b7ded1f2c7a700408125867bbf7ac4bb9da99702423b566345bbb795f3d70c972a2676f20094f2c2b2642628c73b7c07208c42024b2ae6f604824dd6b0
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))
@@ -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]
@@ -1,3 +1,3 @@
1
1
  module BumperPusher
2
- VERSION = "0.1.5"
2
+ VERSION = "0.1.6"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bumper_pusher
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Petr Korolev