gitlabci-bundle-update-mr 0.2.1 → 0.2.2

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
  SHA256:
3
- metadata.gz: e79a247314e92818cfc085b4d48deb88d5db6b6a3da9a978ec8af66bcc0dad35
4
- data.tar.gz: bab306bb6c3c3d0969ec465e341668016c12b189e156c8906a4b52be1866521a
3
+ metadata.gz: fd83034890eb4da2344c15b2c56067609a5e1e61f33c7641ecc7a5669716ed99
4
+ data.tar.gz: b2187f1938ddced13cdb264789b6d2abb32ae8cff942619507fd2016d6e5acd0
5
5
  SHA512:
6
- metadata.gz: 44b5d05f9c1a990299c59f5dbfc0ad631cf17487ef1f15d35321413bbd9b4780288c3d2eb6222786b69114a26d27f4d29b136de175e8b9be346e16bcbd39c4f2
7
- data.tar.gz: 0b5c0129e80a32e4c704260ff6c260d50efbc9ee35c8547274e18b686feb55c295f217eec1cfc5f761b7badc8f5a7976f30cc7e854045555d4db5b38971ec6e8
6
+ metadata.gz: 4ee7b26bbb3fb4537247a9063789508f09efb856c93b716e5717042ce128849e5909e9b80cc96604e0e7c3b1262c8f622a9d6280ff20f8fc1ad21e2e4633bf7f
7
+ data.tar.gz: 63fca35ce40e9e23f01fa6ae63e9300c4d0a942b777e0ae75bbedeedba922196e8472935614d96b8bfabe1cf67c16f1bba9c2b8219fbcffa36628dc38b8c577c
@@ -1,5 +1,11 @@
1
1
  ## Unreleased
2
- [full changelog](https://gitlab.com/sue445/gitlabci-bundle-update-mr/compare/v0.2.1...HEAD)
2
+ [full changelog](https://gitlab.com/sue445/gitlabci-bundle-update-mr/compare/v0.2.2...HEAD)
3
+
4
+ ## v0.2.2
5
+ [full changelog](https://gitlab.com/sue445/gitlabci-bundle-update-mr/compare/v0.2.1...v0.2.2)
6
+
7
+ ### Bugfix
8
+ * Bugfix. doesn't work `--update-bundled-with` option [!30](https://gitlab.com/sue445/gitlabci-bundle-update-mr/merge_requests/30) *@sue445*
3
9
 
4
10
  ## v0.2.1
5
11
  [full changelog](https://gitlab.com/sue445/gitlabci-bundle-update-mr/compare/v0.2.0...v0.2.1)
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- gitlabci-bundle-update-mr (0.2.1)
4
+ gitlabci-bundle-update-mr (0.2.2)
5
5
  bundler
6
6
  compare_linker (>= 1.4.3)
7
7
  gitlab (>= 4.0.0)
@@ -12,7 +12,7 @@ GEM
12
12
  specs:
13
13
  addressable (2.5.2)
14
14
  public_suffix (>= 2.0.2, < 4.0)
15
- byebug (11.0.0)
15
+ byebug (11.0.1)
16
16
  coderay (1.1.2)
17
17
  compare_linker (1.4.3)
18
18
  httpclient
data/README.md CHANGED
@@ -88,13 +88,13 @@ example
88
88
 
89
89
  ```yml
90
90
  include:
91
- - remote: "https://gitlab.com/sue445/gitlabci-bundle-update-mr/blob/master/gitlabci-templates/continuous_bundle_update.yml"
91
+ - remote: "https://gitlab.com/sue445/gitlabci-bundle-update-mr/raw/master/gitlabci-templates/continuous_bundle_update.yml"
92
92
 
93
93
  continuous_bundle_update:
94
94
  stage: build
95
95
 
96
96
  variables:
97
- # override variables (followings are defailts)
97
+ # override variables (followings are defaults)
98
98
  CACHE_VERSION: "v1"
99
99
  GIT_EMAIL: "gitlabci@example.com"
100
100
  GIT_USER: "GitLab CI"
@@ -15,7 +15,7 @@ opt.on("--email EMAIL", "git email address (default. `git config user.email`)")
15
15
  opt.on("--user USER", "git username (default. `git config user.name`)") { |v| author_name = v }
16
16
  opt.on("-d", "--duplicate", "Make MR even if it has already existed (default. false)") { |v| allow_dup_mr = v }
17
17
  opt.on("-l", "--labels 'In Review, Update'", Array, "Add labels to the MR") { |v| mr_labels = v.map(&:strip) }
18
- opt.on("--update-bundled-with", "Whether to update `BUNDLED WITH` section in Gemfie.lock (default. false)") { |v| p v }
18
+ opt.on("--update-bundled-with", "Whether to update `BUNDLED WITH` section in Gemfie.lock (default. false)") { |v| update_bundled_with = v }
19
19
 
20
20
  opt.parse!(ARGV)
21
21
 
@@ -126,7 +126,7 @@ module Gitlabci
126
126
  {
127
127
  lockfile: lockfile_name,
128
128
  },
129
- )
129
+ )
130
130
  end
131
131
 
132
132
  def gemfile_name
@@ -2,7 +2,7 @@ module Gitlabci
2
2
  module Bundle
3
3
  module Update
4
4
  module Mr
5
- VERSION = "0.2.1"
5
+ VERSION = "0.2.2"
6
6
  end
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gitlabci-bundle-update-mr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - sue445
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-03-07 00:00:00.000000000 Z
11
+ date: 2019-03-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler