appbundle-updater 1.0.2 → 1.0.3

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: 0e60c8abc8d0443164ddf6961fa30bb1e128eb3493d6f96cdde25243bbe21090
4
- data.tar.gz: 5298a2377af2a0db747586822d9096b08ac66ad6f9648dec1920b948de59b810
3
+ metadata.gz: bc38c5462173a101679a559137ac31f25acc30d3b967a6fdd3ee3eb69d72fccd
4
+ data.tar.gz: 418c9085c5d1bd752c9ad6ac560b28145f4d67f75ed0967f034a3742fec3f2bd
5
5
  SHA512:
6
- metadata.gz: 9fc53200f71a1843586a9d8f6d32305ce6388f8a9fa65d044b45f31b954b5c7336311aad8f501ed9ab6307103252a87bee6ced60e8fbc7c63a35ce15111a6360
7
- data.tar.gz: 5f75f344206608b4ccc628c0d21010e74dee96f16792f31c13e301e89b2eb1f33825a441933542860462a8d98f8c7b139422d97d4fd7de1f79073011bbcc14e5
6
+ metadata.gz: 4e8d197d1d45bc63180b98311ad186280680c0c4cca83e4c78d5b2a44100e8ea3111c1acb049d5f48615177c8c0bc30adf14ce6a7d95ea505f61bf9867f0b93c
7
+ data.tar.gz: 91600e577f7efff406192626ae214ea5b18d65ea106f43c32dc8269c50ab6c4481259e2e14140037a6e2058f32daa2367ef57bd1132a4256c8fc57dd29429fb7
@@ -1,25 +1,30 @@
1
1
  # appbundle-updater Change Log
2
2
 
3
- <!-- latest_release 1.0.2 -->
4
- ## [v1.0.2](https://github.com/chef/appbundle-updater/tree/v1.0.2) (2020-03-12)
3
+ <!-- latest_release 1.0.3 -->
4
+ ## [v1.0.3](https://github.com/chef/appbundle-updater/tree/v1.0.3) (2020-03-12)
5
5
 
6
6
  #### Merged Pull Requests
7
- - omit the right groups for ohai [#50](https://github.com/chef/appbundle-updater/pull/50) ([lamont-granquist](https://github.com/lamont-granquist))
7
+ - fix a local variable [#51](https://github.com/chef/appbundle-updater/pull/51) ([lamont-granquist](https://github.com/lamont-granquist))
8
8
  <!-- latest_release -->
9
9
 
10
- <!-- release_rollup since=1.0.1 -->
10
+ <!-- release_rollup since=1.0.2 -->
11
11
  ### Changes not yet released to rubygems.org
12
12
 
13
13
  #### Merged Pull Requests
14
- - omit the right groups for ohai [#50](https://github.com/chef/appbundle-updater/pull/50) ([lamont-granquist](https://github.com/lamont-granquist)) <!-- 1.0.2 -->
14
+ - fix a local variable [#51](https://github.com/chef/appbundle-updater/pull/51) ([lamont-granquist](https://github.com/lamont-granquist)) <!-- 1.0.3 -->
15
15
  <!-- release_rollup -->
16
16
 
17
17
  <!-- latest_stable_release -->
18
+ ## [v1.0.2](https://github.com/chef/appbundle-updater/tree/v1.0.2) (2020-03-12)
19
+
20
+ #### Merged Pull Requests
21
+ - omit the right groups for ohai [#50](https://github.com/chef/appbundle-updater/pull/50) ([lamont-granquist](https://github.com/lamont-granquist))
22
+ <!-- latest_stable_release -->
23
+
18
24
  ## [v1.0.1](https://github.com/chef/appbundle-updater/tree/v1.0.1) (2020-03-12)
19
25
 
20
26
  #### Merged Pull Requests
21
27
  - more chef-15 updates [#49](https://github.com/chef/appbundle-updater/pull/49) ([lamont-granquist](https://github.com/lamont-granquist))
22
- <!-- latest_stable_release -->
23
28
 
24
29
  ## [v1.0.0](https://github.com/chef/appbundle-updater/tree/v1.0.0) (2020-03-11)
25
30
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.2
1
+ 1.0.3
@@ -299,7 +299,7 @@ class Updater
299
299
  gems.each do |gem_name, without|
300
300
  Dir.chdir(app_dir) do
301
301
  cmd = "#{bin_dir.join("appbundler")} #{app_dir} #{chefdk.join("bin")} #{gem_name}"
302
- cmd += " --without #{@without.join(",")}" if @without
302
+ cmd += " --without #{without.join(",")}" if without
303
303
  cmd += " --extra-bin-files #{@extra_bin_files}" if @extra_bin_files
304
304
  cmd += " --binstubs-source #{@binstubs_source}" if @binstubs_source
305
305
  ruby(cmd)
@@ -1,3 +1,3 @@
1
1
  module AppbundleUpdater
2
- VERSION = "1.0.2".freeze
2
+ VERSION = "1.0.3".freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appbundle-updater
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - lamont-granquist