Skip to content

Commit b1f951a

Browse files
committed
0.4.0
Signed-off-by: Christoph Hartmann <[email protected]>
1 parent 9615e20 commit b1f951a

File tree

3 files changed

+35
-8
lines changed

3 files changed

+35
-8
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Change Log
2+
3+
## [0.4.0](https://github.com/dev-sec/windows-patch-baseline/tree/0.4.0) (2017-05-08)
4+
[Full Changelog](https://github.com/dev-sec/windows-patch-baseline/compare/0.3.1...0.4.0)
5+
6+
**Merged pull requests:**
7+
8+
- restrict ruby testing to version 2.3.3 [\#7](https://github.com/dev-sec/windows-patch-baseline/pull/7) ([atomic111](https://github.com/atomic111))
9+
- improve code style [\#6](https://github.com/dev-sec/windows-patch-baseline/pull/6) ([chris-rock](https://github.com/chris-rock))
10+
11+
## [0.3.1](https://github.com/dev-sec/windows-patch-baseline/tree/0.3.1) (2017-03-01)
12+
[Full Changelog](https://github.com/dev-sec/windows-patch-baseline/compare/0.3.0...0.3.1)
13+
14+
**Merged pull requests:**
15+
16+
- 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))
17+
- trying to fix line 166 [\#2](https://github.com/dev-sec/windows-patch-baseline/pull/2) ([rojomisin](https://github.com/rojomisin))
18+
19+
## [0.3.0](https://github.com/dev-sec/windows-patch-baseline/tree/0.3.0) (2016-09-08)
20+
[Full Changelog](https://github.com/dev-sec/windows-patch-baseline/compare/0.2.0...0.3.0)
21+
22+
## [0.2.0](https://github.com/dev-sec/windows-patch-baseline/tree/0.2.0) (2016-08-23)
23+
24+
25+
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*

Rakefile

Lines changed: 7 additions & 5 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,15 +26,16 @@ 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
35-
config.user = 'dev-sec'
36-
config.project = 'windows-patch-baseline'
3739
end
3840
rescue LoadError
3941
puts '>>>>> GitHub Changelog Generator not loaded, omitting tasks'

inspec.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
name: windows-patch-benchmark
2-
title: DevSec Windows Patch Benchmark
1+
name: windows-patch-baseline
2+
title: DevSec Windows Patch Baseline
33
summary: Verifies all patches are applied
4-
version: 0.3.1
4+
version: 0.4.0
55

66
maintainer: Christoph Hartmann
77
copyright: Christoph Hartmann

0 commit comments

Comments
 (0)