Skip to content

Commit

Permalink
0.3.0
Browse files Browse the repository at this point in the history
Signed-off-by: Christoph Hartmann <[email protected]>
  • Loading branch information
chris-rock committed May 8, 2017
1 parent 46bced2 commit dd1bba8
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 5 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Change Log

## [0.3.0](https://github.com/dev-sec/linux-patch-baseline/tree/0.3.0) (2017-05-08)
[Full Changelog](https://github.com/dev-sec/linux-patch-baseline/compare/0.2.0...0.3.0)

**Merged pull requests:**

- 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))
- add contribution guidelines [\#7](https://github.com/dev-sec/linux-patch-baseline/pull/7) ([chris-rock](https://github.com/chris-rock))
- 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))
- improve code style [\#5](https://github.com/dev-sec/linux-patch-baseline/pull/5) ([chris-rock](https://github.com/chris-rock))

## [0.2.0](https://github.com/dev-sec/linux-patch-baseline/tree/0.2.0) (2017-03-01)
[Full Changelog](https://github.com/dev-sec/linux-patch-baseline/compare/0.1.0...0.2.0)

**Fixed bugs:**

- nil exception on scanning CentOS 7.2 [\#3](https://github.com/dev-sec/linux-patch-baseline/issues/3)

**Merged pull requests:**

- fix \#3 [\#4](https://github.com/dev-sec/linux-patch-baseline/pull/4) ([chris-rock](https://github.com/chris-rock))
- add basic test-kitchen config [\#1](https://github.com/dev-sec/linux-patch-baseline/pull/1) ([chris-rock](https://github.com/chris-rock))

## [0.1.0](https://github.com/dev-sec/linux-patch-baseline/tree/0.1.0) (2016-09-27)


\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
10 changes: 7 additions & 3 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env rake
# encoding: utf-8

require 'rake/testtask'
require 'rubocop/rake_task'
Expand All @@ -25,10 +26,13 @@ namespace :test do
end

# Automatically generate a changelog for this project. Only loaded if
# the necessary gem is installed.
# use `rake changelog to=1.2.0`
# the necessary gem is installed. By default its picking up the version from
# inspec.yml. You can override that behavior with `rake changelog to=1.2.0`
begin
v = ENV['to']
require 'yaml'
metadata = YAML.load_file('inspec.yml')
v = ENV['to'] || metadata['version']
puts "Generate changelog for version #{v}"
require 'github_changelog_generator/task'
GitHubChangelogGenerator::RakeTask.new :changelog do |config|
config.future_release = v
Expand Down
4 changes: 2 additions & 2 deletions inspec.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: linux-patch-benchmark
name: linux-patch-baseline
title: DevSec Linux Patch Benchmark
summary: Verifies that all patches have been applied
version: 0.2.0
version: 0.3.0

maintainer: Christoph Hartmann
copyright: Christoph Hartmann
Expand Down

0 comments on commit dd1bba8

Please sign in to comment.