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 11#!/usr/bin/env rake
2+ # encoding: utf-8
23
34require 'rake/testtask'
45require 'rubocop/rake_task'
@@ -25,10 +26,13 @@ namespace :test do
2526end
2627
2728# 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`
3031begin
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 } "
3236 require 'github_changelog_generator/task'
3337 GitHubChangelogGenerator ::RakeTask . new :changelog do |config |
3438 config . future_release = v
Original file line number Diff line number Diff line change 1- name : linux-patch-benchmark
1+ name : linux-patch-baseline
22title : DevSec Linux Patch Benchmark
33summary : Verifies that all patches have been applied
4- version : 0.2 .0
4+ version : 0.3 .0
55
66maintainer : Christoph Hartmann
77copyright : Christoph Hartmann
You can’t perform that action at this time.
0 commit comments