bumper_pusher 0.1.8 → 0.1.9

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: 328e5eea81ff73d917cfd4b6faf2ae7b1224c654
4
- data.tar.gz: ad1001cdeab002ad0be2b7f9ef14d0317d6da117
3
+ metadata.gz: a38d79a9e8cea38da1a7d6c7459deace6ff5fc7c
4
+ data.tar.gz: 16e20be862346708c9fc71081f68d6673ab5ec1e
5
5
  SHA512:
6
- metadata.gz: 0e33e471f3873a8aabfb9cd8f264cb6fe663639519d53ce47cdfdaea2269a841a149dd3c3bdd26c6d438e6a6b5806739cd5c2dfa98baa00a916bc028ce014df9
7
- data.tar.gz: 20734c4177ef634cdd00f26a2336935f0fe716a5c95dce0370cc10b54117b4de741cc2a8456d8df56b7f42bf5658fe2a210f62f73dc1c8a18003ac99e9ab0e88
6
+ metadata.gz: fedb6322aa285d03491452d511560520197151eb98e9cb16788d2af9bfe046575631b2619618c4a9661ea580968109111c99fd6bd1cb7172327fcc5467c4d46f
7
+ data.tar.gz: bfdc668224c59579c614f688788fc638afa340982f5e129358efe997702afd8b0883b81a9a095dae69b785e0d2392380f64b2879b6a7e428cc54ea9ae6a2f3c9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.1.8] (https://github.com/skywinder/bumper_pusher/tree/0.1.8)
4
+ #### 10/12/14
5
+ ## [0.1.7] (https://github.com/skywinder/bumper_pusher/tree/0.1.7)
6
+ #### 10/12/14
7
+ - *Merged pull-request:* Fix tag not in master [\#9](https://github.com/skywinder/bumper_pusher/pull/9) ([skywinder](https://github.com/skywinder))
8
+
9
+ ## [0.1.6] (https://github.com/skywinder/bumper_pusher/tree/0.1.6)
10
+ #### 09/12/14
11
+ - *Merged pull-request:* Add gitflow support [\#8](https://github.com/skywinder/bumper_pusher/pull/8) ([skywinder](https://github.com/skywinder))
12
+
13
+ - *Implemented enhancement:* Add support for git flow strategy [\#6](https://github.com/skywinder/bumper_pusher/issues/6)
14
+
3
15
  ## [0.1.5] (https://github.com/skywinder/bumper_pusher/tree/0.1.5)
4
16
  #### 09/12/14
5
17
  ## [0.0.1] (https://github.com/skywinder/bumper_pusher/tree/0.0.1)
@@ -340,6 +340,8 @@ module BumperPusher
340
340
  execute_line_if_not_dry_run("git commit CHANGELOG.md -m \"Update changelog for version #{bumped_version}\"")
341
341
  if is_gitflow_installed
342
342
  execute_line_if_not_dry_run("git flow hotfix finish -n update-changelog")
343
+ current_branch = get_current_branch
344
+ execute_line_if_not_dry_run("git push && git checkout master && git push && git checkout #{current_branch}")
343
345
  else
344
346
  execute_line_if_not_dry_run('git push')
345
347
  end
@@ -1,3 +1,3 @@
1
1
  module BumperPusher
2
- VERSION = "0.1.8"
2
+ VERSION = "0.1.9"
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.8
4
+ version: 0.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Petr Korolev