appbundle-updater 0.3.0 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -2
- data/Rakefile +13 -4
- data/bin/appbundle-updater +4 -2
- data/lib/appbundle_updater/version.rb +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f9c63654d3d1aa755a5691ceade670d203ab7517
|
4
|
+
data.tar.gz: cb57e9d16cb662fd1ca15af20bee07bc116bf77e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9f23a6f6784bfc6c3efdbd7342f7e891ad77a08ee1003b9c23349c80585e3ec48266b860c9fb0ee0bdae7e9127b12ade7e2c4049261a6efd4d314f7ccd5aee0a
|
7
|
+
data.tar.gz: 4999a82017dcc7247f8014381226ba38b164efaff2e091cf58a40607f73380c51097fbcd92f9f8238583f088178bf239a195ebb3771453084549489dc15d6b08
|
data/CHANGELOG.md
CHANGED
@@ -1,8 +1,14 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
-
## [
|
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
|
-
|
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 "
|
1
|
+
require "appbundle_updater/version"
|
2
2
|
require "bundler/gem_tasks"
|
3
3
|
|
4
|
-
|
5
|
-
|
6
|
-
|
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
|
data/bin/appbundle-updater
CHANGED
@@ -137,13 +137,15 @@ CHEFDK_APPS = [
|
|
137
137
|
App.new(
|
138
138
|
"chef",
|
139
139
|
"chef/chef",
|
140
|
-
|
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
|
-
|
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(
|
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.
|
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-
|
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.
|
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:
|