Releasing v1.19.0

Signed-off-by: Adam Leff <adam@leff.co>
This commit is contained in:
Adam Leff 2017-04-04 11:06:16 -04:00
parent 692e660140
commit 5a2a20dc3e
No known key found for this signature in database
GPG key ID: 7A5136DE1C1112F8
3 changed files with 16 additions and 2 deletions

View file

@ -1,5 +1,19 @@
# Change Log
## [v1.19.0](https://github.com/chef/inspec/tree/v1.19.0) (2017-04-04)
[Full Changelog](https://github.com/chef/inspec/compare/v1.18.0...v1.19.0)
**Implemented enhancements:**
- dh\_params resource \(proposed\) [\#1617](https://github.com/chef/inspec/issues/1617)
- Allow apache\_conf to include symlinked configuration files [\#1406](https://github.com/chef/inspec/pull/1406) ([carldjohnston](https://github.com/carldjohnston))
**Merged pull requests:**
- Fix protocols matcher text on ssl resource docs [\#1622](https://github.com/chef/inspec/pull/1622) ([adamleff](https://github.com/adamleff))
- Replace Nokogiri with REXML in the JUnit formatter [\#1621](https://github.com/chef/inspec/pull/1621) ([adamleff](https://github.com/adamleff))
- obvious fix in README.md [\#1619](https://github.com/chef/inspec/pull/1619) ([lucky-sideburn](https://github.com/lucky-sideburn))
## [v1.18.0](https://github.com/chef/inspec/tree/v1.18.0) (2017-03-30)
[Full Changelog](https://github.com/chef/inspec/compare/v1.17.0...v1.18.0)

View file

@ -140,7 +140,7 @@ end
desc 'Generate the changelog'
task :changelog do
require_relative 'lib/inspec/version'
system "github_changelog_generator -u chef -p inspec --future-release #{Inspec::VERSION} --since-tag 0.7.0"
system "github_changelog_generator -u chef -p inspec --future-release v#{Inspec::VERSION} --since-tag 0.7.0"
end
# Update the version of this gem and create an updated

View file

@ -4,5 +4,5 @@
# author: Christoph Hartmann
module Inspec
VERSION = '1.18.0'.freeze
VERSION = '1.19.0'.freeze
end