diff --git a/CHANGELOG.rst b/CHANGELOG.rst index bfc7dff2..683903d5 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,26 @@ Community Windows Release Notes .. contents:: Topics +v1.12.0 +======= + +Release Summary +--------------- + +Release summary for v1.12.0 + +Minor Changes +------------- + +- win_dns_record - Added support for DHCID (RFC 4701) records +- win_domain_user - Added the ``display_name`` option to set the users display name attribute + +Bugfixes +-------- + +- win_firewall_rule - fix problem in check mode with multiple ip addresses not in same order +- win_partition - fix problem in auto assigning a drive letter should the user use either a, u, t or o as a drive letter + v1.11.1 ======= diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 8c5cc4f5..1621ccd5 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -207,6 +207,25 @@ releases: - v1.11.1-release.yml - win_psmodule-bootstrapping.yml release_date: '2022-11-02' + 1.12.0: + changes: + bugfixes: + - win_firewall_rule - fix problem in check mode with multiple ip addresses not + in same order + - win_partition - fix problem in auto assigning a drive letter should the user + use either a, u, t or o as a drive letter + minor_changes: + - win_dns_record - Added support for DHCID (RFC 4701) records + - win_domain_user - Added the ``display_name`` option to set the users display + name attribute + release_summary: Release summary for v1.12.0 + fragments: + - 440-win_firewall_rule.yml + - 463-fix_win_partition_auto_assign.yaml + - release-summary.yml + - win_dns_record-dhcid-support.yaml + - win_domain_user-display_name.yml + release_date: '2022-12-20' 1.2.0: changes: bugfixes: diff --git a/changelogs/fragments/440-win_firewall_rule.yml b/changelogs/fragments/440-win_firewall_rule.yml deleted file mode 100644 index 8a3506c6..00000000 --- a/changelogs/fragments/440-win_firewall_rule.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- win_firewall_rule - fix problem in check mode with multiple ip addresses not in same order diff --git a/changelogs/fragments/463-fix_win_partition_auto_assign.yaml b/changelogs/fragments/463-fix_win_partition_auto_assign.yaml deleted file mode 100644 index 31275197..00000000 --- a/changelogs/fragments/463-fix_win_partition_auto_assign.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: -- win_partition - fix problem in auto assigning a drive letter should the user use either a, u, t or o as a drive letter \ No newline at end of file diff --git a/changelogs/fragments/win_dns_record-dhcid-support.yaml b/changelogs/fragments/win_dns_record-dhcid-support.yaml deleted file mode 100644 index 45447b54..00000000 --- a/changelogs/fragments/win_dns_record-dhcid-support.yaml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - win_dns_record - Added support for DHCID (RFC 4701) records diff --git a/changelogs/fragments/win_domain_user-display_name.yml b/changelogs/fragments/win_domain_user-display_name.yml deleted file mode 100644 index 3949121f..00000000 --- a/changelogs/fragments/win_domain_user-display_name.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- win_domain_user - Added the ``display_name`` option to set the users display name attribute diff --git a/galaxy.yml b/galaxy.yml index cecd187d..8c6828ab 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,6 +1,6 @@ namespace: community name: windows -version: 1.11.1 +version: 1.12.0 readme: README.md authors: - Jordan Borean @jborean93