Skip to content

Commit 35847b1

Browse files
authored
Merge pull request #16 from dev-sec/chris-rock/changelog
add changelog
2 parents ddba5fe + d347e6c commit 35847b1

2 files changed

Lines changed: 44 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Change Log
2+
3+
## [v1.1.0](https://github.com/dev-sec/cis-docker-benchmark/tree/v1.1.0) (2016-12-13)
4+
[Full Changelog](https://github.com/dev-sec/cis-docker-benchmark/compare/v1.0.0...v1.1.0)
5+
6+
**Merged pull requests:**
7+
8+
- update Gemfile and fix rubocop issues [\#15](https://github.com/dev-sec/cis-docker-benchmark/pull/15) ([atomic111](https://github.com/atomic111))
9+
- Edit control "cis-docker-benchmark-3.4" [\#14](https://github.com/dev-sec/cis-docker-benchmark/pull/14) ([emilyh315](https://github.com/emilyh315))
10+
- Edit control "cis-docker-benchmark-1.11" [\#13](https://github.com/dev-sec/cis-docker-benchmark/pull/13) ([emilyh315](https://github.com/emilyh315))
11+
- Fix README.md [\#12](https://github.com/dev-sec/cis-docker-benchmark/pull/12) ([netflash](https://github.com/netflash))
12+
13+
## [v1.0.0](https://github.com/dev-sec/cis-docker-benchmark/tree/v1.0.0) (2016-07-05)
14+
**Implemented enhancements:**
15+
16+
- use new InSpec attributes [\#10](https://github.com/dev-sec/cis-docker-benchmark/pull/10) ([chris-rock](https://github.com/chris-rock))
17+
- handle nil results for docker.path [\#6](https://github.com/dev-sec/cis-docker-benchmark/pull/6) ([chris-rock](https://github.com/chris-rock))
18+
- externalize reoccurring calls to docker resource [\#4](https://github.com/dev-sec/cis-docker-benchmark/pull/4) ([chris-rock](https://github.com/chris-rock))
19+
- determine attribute values at the beginning [\#1](https://github.com/dev-sec/cis-docker-benchmark/pull/1) ([chris-rock](https://github.com/chris-rock))
20+
21+
**Merged pull requests:**
22+
23+
- fix ips for vagrant machines [\#9](https://github.com/dev-sec/cis-docker-benchmark/pull/9) ([chris-rock](https://github.com/chris-rock))
24+
- change order of InSpec img shield in README.md [\#7](https://github.com/dev-sec/cis-docker-benchmark/pull/7) ([atomic111](https://github.com/atomic111))
25+
- add ruby 2.3.1 to travis.yml [\#5](https://github.com/dev-sec/cis-docker-benchmark/pull/5) ([atomic111](https://github.com/atomic111))
26+
- changed link to CIS Docker Benchmark document [\#3](https://github.com/dev-sec/cis-docker-benchmark/pull/3) ([atomic111](https://github.com/atomic111))
27+
- add Vagrantfile to repo [\#2](https://github.com/dev-sec/cis-docker-benchmark/pull/2) ([atomic111](https://github.com/atomic111))
28+
29+
30+
31+
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*

Rakefile

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,16 @@ namespace :test do
2424
sh("bundle exec inspec check #{dir}")
2525
end
2626
end
27+
28+
# Automatically generate a changelog for this project. Only loaded if
29+
# the necessary gem is installed.
30+
# use `rake changelog to=1.2.0`
31+
begin
32+
v = ENV['to']
33+
require 'github_changelog_generator/task'
34+
GitHubChangelogGenerator::RakeTask.new :changelog do |config|
35+
config.future_release = v
36+
end
37+
rescue LoadError
38+
puts '>>>>> GitHub Changelog Generator not loaded, omitting tasks'
39+
end

0 commit comments

Comments
 (0)