Skip to content

Commit a1607e9

Browse files
committed
1.2.0
1 parent fa85337 commit a1607e9

File tree

3 files changed

+32
-10
lines changed

3 files changed

+32
-10
lines changed

CHANGELOG.md

Lines changed: 25 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,40 @@
11
# Change Log
22

3-
## [1.1.1](https://github.com/dev-sec/cis-docker-benchmark/tree/1.1.1) (2017-03-01)
4-
**Implemented enhancements:**
3+
## [1.2.0](https://github.com/dev-sec/cis-docker-benchmark/tree/1.2.0) (2017-04-18)
4+
[Full Changelog](https://github.com/dev-sec/cis-docker-benchmark/compare/1.1.1...1.2.0)
55

6-
- use new InSpec attributes [\#10](https://github.com/dev-sec/cis-docker-benchmark/pull/10) ([chris-rock](https://github.com/chris-rock))
7-
- handle nil results for docker.path [\#6](https://github.com/dev-sec/cis-docker-benchmark/pull/6) ([chris-rock](https://github.com/chris-rock))
8-
- externalize reoccurring calls to docker resource [\#4](https://github.com/dev-sec/cis-docker-benchmark/pull/4) ([chris-rock](https://github.com/chris-rock))
9-
- determine attribute values at the beginning [\#1](https://github.com/dev-sec/cis-docker-benchmark/pull/1) ([chris-rock](https://github.com/chris-rock))
6+
**Merged pull requests:**
7+
8+
- update to CIS Benchmark 1.12, controls 1.1 to 2.16 [\#19](https://github.com/dev-sec/cis-docker-benchmark/pull/19) ([atomic111](https://github.com/atomic111))
9+
10+
## [1.1.1](https://github.com/dev-sec/cis-docker-benchmark/tree/1.1.1) (2017-03-01)
11+
[Full Changelog](https://github.com/dev-sec/cis-docker-benchmark/compare/1.1.0...1.1.1)
1012

1113
**Merged pull requests:**
1214

1315
- Fix 'or' in controls 5.1 and 5.2 [\#18](https://github.com/dev-sec/cis-docker-benchmark/pull/18) ([emilyh315](https://github.com/emilyh315))
1416
- add changelog [\#16](https://github.com/dev-sec/cis-docker-benchmark/pull/16) ([chris-rock](https://github.com/chris-rock))
17+
18+
## [1.1.0](https://github.com/dev-sec/cis-docker-benchmark/tree/1.1.0) (2016-12-13)
19+
[Full Changelog](https://github.com/dev-sec/cis-docker-benchmark/compare/1.0.0...1.1.0)
20+
21+
**Merged pull requests:**
22+
1523
- update Gemfile and fix rubocop issues [\#15](https://github.com/dev-sec/cis-docker-benchmark/pull/15) ([atomic111](https://github.com/atomic111))
1624
- Edit control "cis-docker-benchmark-3.4" [\#14](https://github.com/dev-sec/cis-docker-benchmark/pull/14) ([emilyh315](https://github.com/emilyh315))
1725
- Edit control "cis-docker-benchmark-1.11" [\#13](https://github.com/dev-sec/cis-docker-benchmark/pull/13) ([emilyh315](https://github.com/emilyh315))
1826
- Fix README.md [\#12](https://github.com/dev-sec/cis-docker-benchmark/pull/12) ([netflash](https://github.com/netflash))
27+
28+
## [1.0.0](https://github.com/dev-sec/cis-docker-benchmark/tree/1.0.0) (2016-07-05)
29+
**Implemented enhancements:**
30+
31+
- use new InSpec attributes [\#10](https://github.com/dev-sec/cis-docker-benchmark/pull/10) ([chris-rock](https://github.com/chris-rock))
32+
- handle nil results for docker.path [\#6](https://github.com/dev-sec/cis-docker-benchmark/pull/6) ([chris-rock](https://github.com/chris-rock))
33+
- externalize reoccurring calls to docker resource [\#4](https://github.com/dev-sec/cis-docker-benchmark/pull/4) ([chris-rock](https://github.com/chris-rock))
34+
- determine attribute values at the beginning [\#1](https://github.com/dev-sec/cis-docker-benchmark/pull/1) ([chris-rock](https://github.com/chris-rock))
35+
36+
**Merged pull requests:**
37+
1938
- fix ips for vagrant machines [\#9](https://github.com/dev-sec/cis-docker-benchmark/pull/9) ([chris-rock](https://github.com/chris-rock))
2039
- 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))
2140
- add ruby 2.3.1 to travis.yml [\#5](https://github.com/dev-sec/cis-docker-benchmark/pull/5) ([atomic111](https://github.com/atomic111))

Rakefile

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,13 @@ namespace :test do
2626
end
2727

2828
# Automatically generate a changelog for this project. Only loaded if
29-
# the necessary gem is installed.
30-
# use `rake changelog to=1.2.0`
29+
# the necessary gem is installed. By default its picking up the version from
30+
# inspec.yml. You can override that behavior with `rake changelog to=1.2.0`
3131
begin
32-
v = ENV['to']
32+
require 'yaml'
33+
metadata = YAML.load_file('inspec.yml')
34+
v = ENV['to'] || metadata['version']
35+
puts "Generate changelog for version #{v}"
3336
require 'github_changelog_generator/task'
3437
GitHubChangelogGenerator::RakeTask.new :changelog do |config|
3538
config.future_release = v

inspec.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ copyright: DevSec Hardening Framework Team
55
copyright_email: patrick.muench111@gmail.com
66
license: Apache 2.0 License
77
summary: An InSpec Compliance Profile for the CIS Docker Benchmark
8-
version: 1.1.1
8+
version: 1.2.0

0 commit comments

Comments
 (0)