summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Keiser <john@johnkeiser.com>2016-03-02 14:56:15 -0800
committerJohn Keiser <john@johnkeiser.com>2016-03-02 15:03:22 -0800
commit8352f67de678a77fc02322e22bb9b1aa7620925c (patch)
tree75a56b938cd991147d3eb1466c6524cb95cdb0ea
parent63e1b75f7661cb0379aea636f2e1d15127133117 (diff)
downloadohai-jk/version-bump.tar.gz
Bump version to 8.11, add changelogsjk/version-bump
-rw-r--r--CHANGELOG.md26
-rw-r--r--Rakefile9
-rw-r--r--lib/ohai/version.rb2
-rw-r--r--ohai.gemspec1
4 files changed, 31 insertions, 7 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f52277c2..009cdd99 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,10 +1,24 @@
-# Ohai Changelog
+# Change Log
-## UNRELEASED
-* [pr#724](https://github.com/chef/ohai/pull/724) Improved debug logging for cloud plugins
-* [pr#722](https://github.com/chef/ohai/pull/722) Detect paravirt amazon instances without hint files
-* [pr#714](https://github.com/chef/ohai/pull/714) Detect Azure using the Azure agent and DHCP options
-* [pr#724](https://github.com/chef/ohai/pull/725) Add support for the 2 latest EC2 metadata versions
+## [8.11.0](https://github.com/chef/ohai/tree/8.11.0) (2016-03-02)
+[Full Changelog](https://github.com/chef/ohai/compare/v8.10.0...8.11.0)
+
+**Implemented enhancements:**
+
+- Detect Azure on non-bootstrapped hosts [\#657](https://github.com/chef/ohai/issues/657)
+- Deprecate run\_command and popen4 in the command mixin [\#730](https://github.com/chef/ohai/pull/730) ([tas50](https://github.com/tas50))
+- OHAI-726 Regex to support openjdk 1.8 [\#727](https://github.com/chef/ohai/pull/727) ([davidnewman](https://github.com/davidnewman))
+- Add support for the 2 latest EC2 metadata versions [\#725](https://github.com/chef/ohai/pull/725) ([tas50](https://github.com/tas50))
+- Improved debug logging for cloud plugins [\#724](https://github.com/chef/ohai/pull/724) ([tas50](https://github.com/tas50))
+- Detect paravirt amazon instances without hint files [\#722](https://github.com/chef/ohai/pull/722) ([tas50](https://github.com/tas50))
+- Detect Azure using the Azure agent and DHCP options [\#714](https://github.com/chef/ohai/pull/714) ([tas50](https://github.com/tas50))
+
+**Fixed bugs:**
+
+- EC2 autodetection is broken [\#691](https://github.com/chef/ohai/issues/691)
+- have a proper dependency on plist [\#737](https://github.com/chef/ohai/pull/737) ([thommay](https://github.com/thommay))
+- Log sigar gem load failures [\#731](https://github.com/chef/ohai/pull/731) ([tas50](https://github.com/tas50))
+- ipaddress on Linux - default route pointing to unaddressed interface, with route src [\#682](https://github.com/chef/ohai/pull/682) ([glennmatthews](https://github.com/glennmatthews))
## Release 8.10.0
* [pr#720](https://github.com/chef/ohai/pull/720) Make Windows driver plugin opt-in via config
diff --git a/Rakefile b/Rakefile
index 980e3135..94e71291 100644
--- a/Rakefile
+++ b/Rakefile
@@ -22,3 +22,12 @@ require "rubocop/rake_task"
RuboCop::RakeTask.new(:style) do |task|
task.options += ["--display-cop-names", "--no-color"]
end
+
+require "github_changelog_generator/task"
+
+GitHubChangelogGenerator::RakeTask.new :changelog do |config|
+ config.future_release = Ohai::VERSION
+ config.enhancement_labels = "enhancement,Enhancement,New Feature,Feature".split(",")
+ config.bug_labels = "bug,Bug,Improvement,Upstream Bug".split(",")
+ config.exclude_labels = "duplicate,question,invalid,wontfix,no_changelog,Exclude From Changelog,Question,Discussion".split(",")
+end
diff --git a/lib/ohai/version.rb b/lib/ohai/version.rb
index 4fc09570..65ec1500 100644
--- a/lib/ohai/version.rb
+++ b/lib/ohai/version.rb
@@ -18,5 +18,5 @@
module Ohai
OHAI_ROOT = File.expand_path(File.dirname(__FILE__))
- VERSION = "8.10.0"
+ VERSION = "8.11.0"
end
diff --git a/ohai.gemspec b/ohai.gemspec
index 83df1462..1676cfa8 100644
--- a/ohai.gemspec
+++ b/ohai.gemspec
@@ -41,6 +41,7 @@ Gem::Specification.new do |s|
s.add_development_dependency "rspec-mocks", "~> 3.0"
s.add_development_dependency "rspec-collection_matchers", "~> 1.0"
s.add_development_dependency "rspec_junit_formatter"
+ s.add_development_dependency "github_changelog_generator", "1.11.3"
s.bindir = "bin"
s.executables = %w{ohai}