Skip to content

Commit

Permalink
0.4.0
Browse files Browse the repository at this point in the history
Signed-off-by: Christoph Hartmann <chris@lollyrock.com>
  • Loading branch information
chris-rock committed May 8, 2017
1 parent 9615e20 commit b1f951a
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 8 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Change Log

## [0.4.0](https://github.com/dev-sec/windows-patch-baseline/tree/0.4.0) (2017-05-08)
[Full Changelog](https://github.com/dev-sec/windows-patch-baseline/compare/0.3.1...0.4.0)

**Merged pull requests:**

- restrict ruby testing to version 2.3.3 [\#7](https://github.com/dev-sec/windows-patch-baseline/pull/7) ([atomic111](https://github.com/atomic111))
- improve code style [\#6](https://github.com/dev-sec/windows-patch-baseline/pull/6) ([chris-rock](https://github.com/chris-rock))

## [0.3.1](https://github.com/dev-sec/windows-patch-baseline/tree/0.3.1) (2017-03-01)
[Full Changelog](https://github.com/dev-sec/windows-patch-baseline/compare/0.3.0...0.3.1)

**Merged pull requests:**

- return empty array, if the operating is not supported [\#3](https://github.com/dev-sec/windows-patch-baseline/pull/3) ([chris-rock](https://github.com/chris-rock))
- trying to fix line 166 [\#2](https://github.com/dev-sec/windows-patch-baseline/pull/2) ([rojomisin](https://github.com/rojomisin))

## [0.3.0](https://github.com/dev-sec/windows-patch-baseline/tree/0.3.0) (2016-09-08)
[Full Changelog](https://github.com/dev-sec/windows-patch-baseline/compare/0.2.0...0.3.0)

## [0.2.0](https://github.com/dev-sec/windows-patch-baseline/tree/0.2.0) (2016-08-23)


\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
12 changes: 7 additions & 5 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,15 +26,16 @@ 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
config.user = 'dev-sec'
config.project = 'windows-patch-baseline'
end
rescue LoadError
puts '>>>>> GitHub Changelog Generator not loaded, omitting tasks'
Expand Down
6 changes: 3 additions & 3 deletions inspec.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: windows-patch-benchmark
title: DevSec Windows Patch Benchmark
name: windows-patch-baseline
title: DevSec Windows Patch Baseline
summary: Verifies all patches are applied
version: 0.3.1
version: 0.4.0

maintainer: Christoph Hartmann
copyright: Christoph Hartmann
Expand Down

0 comments on commit b1f951a

Please sign in to comment.