appbundle-updater 0.3.0 → 0.4.0

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: dd5ccd49b9c4003f85cb287126d16b62852c75a7
4
- data.tar.gz: e86e09902321fdbccb9e782b67d8da8513a97773
3
+ metadata.gz: f9c63654d3d1aa755a5691ceade670d203ab7517
4
+ data.tar.gz: cb57e9d16cb662fd1ca15af20bee07bc116bf77e
5
5
  SHA512:
6
- metadata.gz: 249f2c948b1f4981a4f78d82db31688bc3d0cf94207250e77c170ca30250de82eada5e75f1b3ac1312473ebd596cfc6c10178bbddb487602fed15d4e63392647
7
- data.tar.gz: 3c6701d543e1f6ef4b9cc4c910f0257b7cdd012fc2d60a7261e6954c6019cedda273154e3004f1199a8556fcdfb9f0b692115e0454c5797cf1be73864c0ffe78
6
+ metadata.gz: 9f23a6f6784bfc6c3efdbd7342f7e891ad77a08ee1003b9c23349c80585e3ec48266b860c9fb0ee0bdae7e9127b12ade7e2c4049261a6efd4d314f7ccd5aee0a
7
+ data.tar.gz: 4999a82017dcc7247f8014381226ba38b164efaff2e091cf58a40607f73380c51097fbcd92f9f8238583f088178bf239a195ebb3771453084549489dc15d6b08
@@ -1,8 +1,14 @@
1
1
  # Change Log
2
2
 
3
- ## [Unreleased](https://github.com/chef/appbundle-updater/tree/HEAD)
3
+ ## [0.4.0](https://github.com/chef/appbundle-updater/tree/0.4.0) (2016-09-08)
4
+ [Full Changelog](https://github.com/chef/appbundle-updater/compare/v0.3.0...0.4.0)
4
5
 
5
- [Full Changelog](https://github.com/chef/appbundle-updater/compare/v0.2.12...HEAD)
6
+ **Merged pull requests:**
7
+
8
+ - Update only runtime chef dependencies [\#18](https://github.com/chef/appbundle-updater/pull/18) ([jkeiser](https://github.com/jkeiser))
9
+
10
+ ## [v0.3.0](https://github.com/chef/appbundle-updater/tree/v0.3.0) (2016-06-28)
11
+ [Full Changelog](https://github.com/chef/appbundle-updater/compare/v0.2.12...v0.3.0)
6
12
 
7
13
  **Merged pull requests:**
8
14
 
data/Rakefile CHANGED
@@ -1,7 +1,16 @@
1
- require "github_changelog_generator/task"
1
+ require "appbundle_updater/version"
2
2
  require "bundler/gem_tasks"
3
3
 
4
- GitHubChangelogGenerator::RakeTask.new :changelog do |config|
5
- # config.since_tag = "1.0.1"
6
- # config.exclude_labels = %w[duplicate question invalid wontfix changelog_skip]
4
+ begin
5
+ require "github_changelog_generator/task"
6
+
7
+ GitHubChangelogGenerator::RakeTask.new :changelog do |config|
8
+ config.issues = false
9
+ config.future_release = AppbundleUpdater::VERSION
10
+ config.enhancement_labels = "enhancement,Enhancement,New Feature,Feature".split(",")
11
+ config.bug_labels = "bug,Bug,Improvement,Upstream Bug".split(",")
12
+ config.exclude_labels = "duplicate,question,invalid,wontfix,no_changelog,Exclude From Changelog,Question,Discussion".split(",")
13
+ end
14
+ rescue LoadError
15
+ puts "github_changelog_generator is not available. gem install github_changelog_generator to generate changelogs"
7
16
  end
@@ -137,13 +137,15 @@ CHEFDK_APPS = [
137
137
  App.new(
138
138
  "chef",
139
139
  "chef/chef",
140
- "server docgen test development",
140
+ # from chef/version_policy.rb INSTALL_WITHOUT_GROUPS
141
+ "changelog development docgen guard integration maintenance tools travis style",
141
142
  chef_install_command,
142
143
  ),
143
144
  App.new(
144
145
  "chef-dk",
145
146
  "chef/chef-dk",
146
- "dev test development",
147
+ # from chef-dk/version_policy.rb INSTALL_WITHOUT_GROUPS
148
+ "changelog compat_testing development docgen guard integration maintenance test tools travis style",
147
149
  "#{bin_dir.join("rake")} install",
148
150
  ),
149
151
  App.new(
@@ -1,3 +1,3 @@
1
1
  module AppbundleUpdater
2
- VERSION = "0.3.0"
2
+ VERSION = "0.4.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appbundle-updater
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - lamont-granquist
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-06-28 00:00:00.000000000 Z
11
+ date: 2016-09-08 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Updates appbundled apps in Chef's omnibus packages
14
14
  email:
@@ -50,11 +50,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
50
50
  version: '0'
51
51
  requirements: []
52
52
  rubyforge_project:
53
- rubygems_version: 2.4.8
53
+ rubygems_version: 2.6.6
54
54
  signing_key:
55
55
  specification_version: 4
56
56
  summary: Updates appbundled apps in Chef's omnibus packages
57
57
  test_files:
58
58
  - test/integration/bootstrap.ps1
59
59
  - test/integration/bootstrap.sh
60
- has_rdoc: