Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add changelog #18

Merged
merged 2 commits into from
Dec 7, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Change Log

## [Unreleased](https://github.com/chef/kitchen-inspec/tree/HEAD)

[Full Changelog](https://github.com/chef/kitchen-inspec/compare/v0.9.0...HEAD)

**Implemented enhancements:**

- support test suite helpers [\#12](https://github.com/chef/kitchen-inspec/pull/12) ([schisamo](https://github.com/schisamo))
- Fix typo in README [\#8](https://github.com/chef/kitchen-inspec/pull/8) ([englishm](https://github.com/englishm))
- Gem [\#7](https://github.com/chef/kitchen-inspec/pull/7) ([chris-rock](https://github.com/chris-rock))

**Fixed bugs:**

- raise ActionFailed when inspec returns other than 0. [\#13](https://github.com/chef/kitchen-inspec/pull/13) ([sawanoboly](https://github.com/sawanoboly))

## [v0.9.0](https://github.com/chef/kitchen-inspec/tree/v0.9.0) (2015-11-03)
**Implemented enhancements:**

- Update README.md [\#6](https://github.com/chef/kitchen-inspec/pull/6) ([chris-rock](https://github.com/chris-rock))
- Support all Kitchen/SSH as Train/SSH tunables. [\#4](https://github.com/chef/kitchen-inspec/pull/4) ([fnichol](https://github.com/fnichol))
- use new inspec as gem source [\#3](https://github.com/chef/kitchen-inspec/pull/3) ([chris-rock](https://github.com/chris-rock))
- Rename + Update [\#2](https://github.com/chef/kitchen-inspec/pull/2) ([chris-rock](https://github.com/chris-rock))
- add usage instructions [\#1](https://github.com/chef/kitchen-inspec/pull/1) ([chris-rock](https://github.com/chris-rock))

**Fixed bugs:**

- Add WinRM support to Verifier \(pending full support in Train\). [\#5](https://github.com/chef/kitchen-inspec/pull/5) ([fnichol](https://github.com/fnichol))



\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
4 changes: 4 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,7 @@ end
group :test do
gem "codeclimate-test-reporter", :require => nil
end

group :tools do
gem 'github_changelog_generator', '~> 1'
end
9 changes: 9 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,12 @@ desc "Run all quality tasks"
task :quality => [:cane, :style, :stats]

task :default => [:test, :quality]

# Automatically generate a changelog for this project. Only loaded if
# the necessary gem is installed.
begin
require 'github_changelog_generator/task'
GitHubChangelogGenerator::RakeTask.new :changelog
rescue LoadError
puts '>>>>> GitHub Changelog Generator not loaded, omitting tasks'
end