Skip to content

Commit b820d97

Browse files
committed
Prepares 0.9.3 release
1 parent c2bfd19 commit b820d97

File tree

7 files changed

+28
-11
lines changed

7 files changed

+28
-11
lines changed

.bumpversion.cfg

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.9.3.dev
2+
current_version = 0.9.3
33
commit = False
44
tag = False
55
tag_name = {new_version}
@@ -9,5 +9,6 @@ tag_name = {new_version}
99
[bumpversion:file:CHANGELOG.md]
1010

1111
[bumpversion:part:release]
12-
values =
12+
values =
1313
dev
14+

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ deploy:
9797
name: $WAM_VERSION
9898
tag_name: $WAM_VERSION
9999
body: $WAM_BODY
100-
draft: true
100+
draft: false
101101
skip_cleanup: true
102102
api_key:
103103
secure: NZQua4PHfAugtez+Kkp+TZxxg8sgFPuTnEmJmQ/BBazUTWy5IGcMJFcQxI6y+YVmiiMshwV36B53sQaY9lLwZEaPARjPMNprBCRuGR436s5UrkmDSAl2uH7kbpEkbsIA2L4V++85v0q2PVSacgWW8abGs0mHydA6chHKewlvKiyI5PqlEhgABPx5LDIF2Wmrg/YfdPxtmMb9IHP0LN1sj5x59dxe727fbY6/kUpb4mrQ306EHBYSMi4E2mpP2zIlrt21KUuU8iFHNaRKUzSlq5Lva4JeoKlh3RT7G3YA4u+7dH5eJUxnHFFhFnLBIz1d2wDY1tVaEGX1CDAKW6lSCBBOarnLnDkvtLDD23NVUNXC81+7OLObaw63rtubfC3syZ1Kp517R4vgIZwRhBrvvJDr2IO5X/YtHVETBwkhDb8Ol8djXrwRbOeEgGWwkU66BbgX2HlcoggQqDhDWZWBosu7iz01pXvAFKiylNHbPULNV2gOM9HzY0kmxq3/zzwdBfLxJH8delSCK1uvQpZlmaBW6SA0/l7yuoxDN8KrXSRgwuE9A3XuMe6ZhbU5AZSqWA7vMdnwCg05xK2zo3Xohi7QE4AxY1jZW2ficBWWWFcdUTZpG+TRKC8LzQWBmZ61s9lNn+HfFC5yqYkJopLPeRYzfyeUJN79rr9leC04sVI=

CHANGELOG.md

+20-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,30 @@
11
## Changelog
22

3-
### 0.9.3.dev
3+
### 0.9.3
44

5-
**Commit Delta**: [Change from 0.9.2 release](https://github.com/plus3it/watchmaker/compare/0.9.2...0.9.3.dev)
5+
**Commit Delta**: [Change from 0.9.2 release](https://github.com/plus3it/watchmaker/compare/0.9.2...0.9.3)
66

7-
**Released**: TBD
7+
**Released**: 2017.03.08
88

99
**Summary**:
1010

11-
* TBD
11+
* scap-formula
12+
- Incorporates content from OpenSCAP Security Guide v0.1.38-1
13+
- Incorporates content from latest DISA SCAP benchmarks
14+
- Microsoft Internet Explorer 11 STIG Benchmark - Ver 1, Rel 11
15+
- Microsoft Windows 10 STIG Benchmark - Ver 1, Rel 10
16+
- Microsoft Windows 2008 R2 DC STIG Benchmark - Ver 1, Rel 27
17+
- Microsoft Windows 2008 R2 MS STIG Benchmark - Ver 1, Rel 28
18+
- Microsoft Windows 2012 and 2012 R2 DC STIG Benchmark - Ver 2, Rel 11
19+
- Microsoft Windows 2012 and 2012 R2 MS STIG Benchmark - Ver 2, Rel 11
20+
- Microsoft Windows 8/8.1 STIG Benchmark - Ver 1, Rel 21
21+
- Microsoft Windows Server 2016 STIG Benchmark - Ver 1, Rel 4
22+
- Red Hat 6 STIG Benchmark - Ver 1, Rel 18
23+
- Red Hat 7 STIG Benchmark - Ver 1, Rel 2
24+
* dotnet4-formula
25+
- Skips dotnet4 hotfix install if a newer version is already installed
26+
- Creates per-OS maps for hotfix updates, since the hotfix id varies per
27+
OS
1228

1329
### 0.9.2
1430

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ specify something like this for EC2 userdata:
180180
$GitRepo = "https://github.com/<your-github-username>/watchmaker.git"
181181
$GitBranch = "<your-branch>"
182182
183-
$BootstrapUrl = "https://raw.githubusercontent.com/plus3it/watchmaker/master/docs/files/bootstrap/watchmaker-bootstrap.ps1"
183+
$BootstrapUrl = "https://raw.githubusercontent.com/plus3it/watchmaker/develop/docs/files/bootstrap/watchmaker-bootstrap.ps1"
184184
$PythonUrl = "https://www.python.org/ftp/python/3.6.4/python-3.6.4-amd64.exe"
185185
$GitUrl = "https://github.com/git-for-windows/git/releases/download/v2.16.2.windows.1/Git-2.16.2-64-bit.exe"
186186
$PypiUrl = "https://pypi.org/simple"

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[metadata]
22
name = watchmaker
33
description = Applied Configuration Management
4-
version = 0.9.3.dev
4+
version = 0.9.3
55
author = Plus3IT Maintainers of Watchmaker
66
author_email = [email protected]
77
url = https://github.com/plus3it/watchmaker
Submodule scap-formula updated 52 files

0 commit comments

Comments
 (0)