File tree Expand file tree Collapse file tree 3 files changed +35
-8
lines changed Expand file tree Collapse file tree 3 files changed +35
-8
lines changed Original file line number Diff line number Diff line change 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 ) *
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,15 +26,16 @@ 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
35- config . user = 'dev-sec'
36- config . project = 'windows-patch-baseline'
3739 end
3840rescue LoadError
3941 puts '>>>>> GitHub Changelog Generator not loaded, omitting tasks'
Original file line number Diff line number Diff line change 1- name : windows-patch-benchmark
2- title : DevSec Windows Patch Benchmark
1+ name : windows-patch-baseline
2+ title : DevSec Windows Patch Baseline
33summary : Verifies all patches are applied
4- version : 0.3.1
4+ version : 0.4.0
55
66maintainer : Christoph Hartmann
77copyright : Christoph Hartmann
You can’t perform that action at this time.
0 commit comments