diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b64fee6b..94308479 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,25 @@ Ansible Changelog Tool Release Notes .. contents:: Topics +v0.13.0 +======= + +Release Summary +--------------- + +This release makes changelog building more reliable. + +Minor Changes +------------- + +- Always lint fragments before releasing (https://github.com/ansible-community/antsibull-changelog/issues/65, https://github.com/ansible-community/antsibull-changelog/pull/67). + +Bugfixes +-------- + +- Fix issues with module namespaces when symlinks appear in the path to the temp directory (https://github.com/ansible-community/antsibull-changelog/issues/68, https://github.com/ansible-community/antsibull-changelog/pull/69). +- Stop mentioning ``galaxy.yaml`` instead of ``galaxy.yml`` in some error messages (https://github.com/ansible-community/antsibull-changelog/pull/66). + v0.12.0 ======= diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index a8c84c0e..423f8164 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -49,6 +49,24 @@ releases: - other-projects.yml - use_semantic_versioning.yml release_date: '2021-07-11' + 0.13.0: + changes: + bugfixes: + - Fix issues with module namespaces when symlinks appear in the path to the + temp directory (https://github.com/ansible-community/antsibull-changelog/issues/68, + https://github.com/ansible-community/antsibull-changelog/pull/69). + - Stop mentioning ``galaxy.yaml`` instead of ``galaxy.yml`` in some error messages + (https://github.com/ansible-community/antsibull-changelog/pull/66). + minor_changes: + - Always lint fragments before releasing (https://github.com/ansible-community/antsibull-changelog/issues/65, + https://github.com/ansible-community/antsibull-changelog/pull/67). + release_summary: This release makes changelog building more reliable. + fragments: + - 0.13.0.yml + - 66-galaxy.yaml + - 67-lint-before-release.yml + - 69-symlinks.yml + release_date: '2021-12-13' 0.2.0: changes: minor_changes: diff --git a/changelogs/fragments/0.13.0.yml b/changelogs/fragments/0.13.0.yml deleted file mode 100644 index f5ffa8f2..00000000 --- a/changelogs/fragments/0.13.0.yml +++ /dev/null @@ -1 +0,0 @@ -release_summary: This release makes changelog building more reliable. diff --git a/changelogs/fragments/66-galaxy.yaml b/changelogs/fragments/66-galaxy.yaml deleted file mode 100644 index a07c5696..00000000 --- a/changelogs/fragments/66-galaxy.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - "Stop mentioning ``galaxy.yaml`` instead of ``galaxy.yml`` in some error messages (https://github.com/ansible-community/antsibull-changelog/pull/66)." diff --git a/changelogs/fragments/67-lint-before-release.yml b/changelogs/fragments/67-lint-before-release.yml deleted file mode 100644 index ae274376..00000000 --- a/changelogs/fragments/67-lint-before-release.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - "Always lint fragments before releasing (https://github.com/ansible-community/antsibull-changelog/issues/65, https://github.com/ansible-community/antsibull-changelog/pull/67)." diff --git a/changelogs/fragments/69-symlinks.yml b/changelogs/fragments/69-symlinks.yml deleted file mode 100644 index 320c05ab..00000000 --- a/changelogs/fragments/69-symlinks.yml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - "Fix issues with module namespaces when symlinks appear in the path to the temp directory (https://github.com/ansible-community/antsibull-changelog/issues/68, https://github.com/ansible-community/antsibull-changelog/pull/69)."