Skip to content

Commit dd1bba8

Browse files
committed
0.3.0
Signed-off-by: Christoph Hartmann <chris@lollyrock.com>
1 parent 46bced2 commit dd1bba8

File tree

3 files changed

+37
-5
lines changed

3 files changed

+37
-5
lines changed

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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)*

Rakefile

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env rake
2+
# encoding: utf-8
23

34
require 'rake/testtask'
45
require 'rubocop/rake_task'
@@ -25,10 +26,13 @@ namespace :test do
2526
end
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`
3031
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}"
3236
require 'github_changelog_generator/task'
3337
GitHubChangelogGenerator::RakeTask.new :changelog do |config|
3438
config.future_release = v

inspec.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
name: linux-patch-benchmark
1+
name: linux-patch-baseline
22
title: DevSec Linux Patch Benchmark
33
summary: Verifies that all patches have been applied
4-
version: 0.2.0
4+
version: 0.3.0
55

66
maintainer: Christoph Hartmann
77
copyright: Christoph Hartmann

0 commit comments

Comments
 (0)