File tree Expand file tree Collapse file tree 3 files changed +37
-5
lines changed Expand file tree Collapse file tree 3 files changed +37
-5
lines changed Original file line number Diff line number Diff line change
1
+ # Change Log
2
+
3
+ ## [ 0.3.0] ( https://github.com/dev-sec/linux-patch-baseline/tree/0.3.0 ) (2017-05-08)
4
+ [ Full Changelog] ( https://github.com/dev-sec/linux-patch-baseline/compare/0.2.0...0.3.0 )
5
+
6
+ ** Merged pull requests:**
7
+
8
+ - restrict ruby testing to version 2.3.3 and update gemfile [ \# 8] ( https://github.com/dev-sec/linux-patch-baseline/pull/8 ) ([ atomic111] ( https://github.com/atomic111 ) )
9
+ - add contribution guidelines [ \# 7] ( https://github.com/dev-sec/linux-patch-baseline/pull/7 ) ([ chris-rock] ( https://github.com/chris-rock ) )
10
+ - only run detailed patch control if patches are available [ \# 6] ( https://github.com/dev-sec/linux-patch-baseline/pull/6 ) ([ chris-rock] ( https://github.com/chris-rock ) )
11
+ - improve code style [ \# 5] ( https://github.com/dev-sec/linux-patch-baseline/pull/5 ) ([ chris-rock] ( https://github.com/chris-rock ) )
12
+
13
+ ## [ 0.2.0] ( https://github.com/dev-sec/linux-patch-baseline/tree/0.2.0 ) (2017-03-01)
14
+ [ Full Changelog] ( https://github.com/dev-sec/linux-patch-baseline/compare/0.1.0...0.2.0 )
15
+
16
+ ** Fixed bugs:**
17
+
18
+ - nil exception on scanning CentOS 7.2 [ \# 3] ( https://github.com/dev-sec/linux-patch-baseline/issues/3 )
19
+
20
+ ** Merged pull requests:**
21
+
22
+ - fix \# 3 [ \# 4] ( https://github.com/dev-sec/linux-patch-baseline/pull/4 ) ([ chris-rock] ( https://github.com/chris-rock ) )
23
+ - add basic test-kitchen config [ \# 1] ( https://github.com/dev-sec/linux-patch-baseline/pull/1 ) ([ chris-rock] ( https://github.com/chris-rock ) )
24
+
25
+ ## [ 0.1.0] ( https://github.com/dev-sec/linux-patch-baseline/tree/0.1.0 ) (2016-09-27)
26
+
27
+
28
+ \* * This Change Log was automatically generated by [ github_changelog_generator] ( https://github.com/skywinder/Github-Changelog-Generator ) *
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env rake
2
+ # encoding: utf-8
2
3
3
4
require 'rake/testtask'
4
5
require 'rubocop/rake_task'
@@ -25,10 +26,13 @@ namespace :test do
25
26
end
26
27
27
28
# Automatically generate a changelog for this project. Only loaded if
28
- # the necessary gem is installed.
29
- # 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`
30
31
begin
31
- 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 } "
32
36
require 'github_changelog_generator/task'
33
37
GitHubChangelogGenerator ::RakeTask . new :changelog do |config |
34
38
config . future_release = v
Original file line number Diff line number Diff line change 1
- name : linux-patch-benchmark
1
+ name : linux-patch-baseline
2
2
title : DevSec Linux Patch Benchmark
3
3
summary : Verifies that all patches have been applied
4
- version : 0.2 .0
4
+ version : 0.3 .0
5
5
6
6
maintainer : Christoph Hartmann
7
7
copyright : Christoph Hartmann
You can’t perform that action at this time.
0 commit comments