bumper_pusher 0.1.13 → 0.1.14

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: eac8fa2b7c543663e4f8b05d0c509b42ae2ae6bf
4
- data.tar.gz: 5094f444f40d5442ed8150363d96581ae1d23f94
3
+ metadata.gz: f1afe0635ec7221d0ba4a6ea1ccd9e9f1598e02a
4
+ data.tar.gz: e6bd9a9031ea4126b0eb68d66fe82d3355fa996c
5
5
  SHA512:
6
- metadata.gz: 4f51aa9b19c969d8892077389a16caf8317ac7128aa59a485913898315a358f84ac9d6bf8308c347a494f9b3985b28d5032a000a3b37e0627b7daa9a8d80c956
7
- data.tar.gz: 7c1e9c0ce95ace334b5b960ee8c81d757a0f0dcfa85cf939d77be35411e5335a9417eef8ccd5f90aa0025a8a55f6199c23c6f702442892d5b880e214af16ae6e
6
+ metadata.gz: db2759bcb807c0bf2db66218708f016bdba02f5dc8800b8ae662e9075a91f02ccb5b05d622ab932829feb0b5ee81ed63e09ab1574faef4ab6e5ae458e984e9ff
7
+ data.tar.gz: 122df59f28fbc3c1510770cefa0ccb1c68e15971bca9de2001bd09a7ba954a7509c0ef93eb3584b30e77e22188647f85151ce02774c9bbb8f6f701cf6ee8e5c5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.1.13](https://github.com/skywinder/bumper_pusher/tree/0.1.13)
4
+ [Full Changelog](https://github.com/skywinder/bumper_pusher/compare/0.1.12...0.1.13)
5
+ #### 09/02/15
3
6
  ## [0.1.12](https://github.com/skywinder/bumper_pusher/tree/0.1.12)
4
7
  [Full Changelog](https://github.com/skywinder/bumper_pusher/compare/0.1.11...0.1.12)
5
8
  #### 09/02/15
@@ -272,8 +272,12 @@ module BumperPusher
272
272
  result, versions_array = find_version_in_file(version_file)
273
273
  bumped_version = bump_version(versions_array)
274
274
 
275
- if is_gitflow_installed && !@options[:beta]
276
- execute_line_if_not_dry_run("git flow release start #{bumped_version}", check_exit = false)
275
+
276
+ unless @options[:beta]
277
+ execute_line_if_not_dry_run('git push --all')
278
+ if is_gitflow_installed
279
+ execute_line_if_not_dry_run("git flow release start #{bumped_version}", check_exit = false)
280
+ end
277
281
  end
278
282
 
279
283
  if @options[:bump]
@@ -290,7 +294,6 @@ module BumperPusher
290
294
  execute_line_if_not_dry_run('git checkout master')
291
295
  end
292
296
  end
293
- execute_line_if_not_dry_run('git push --all')
294
297
  execute_line_if_not_dry_run("git tag #{bumped_version}")
295
298
  end
296
299
 
@@ -1,3 +1,3 @@
1
1
  module BumperPusher
2
- VERSION = "0.1.13"
2
+ VERSION = "0.1.14"
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.13
4
+ version: 0.1.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Petr Korolev