From 67444f32dbffa00a8ede22292e88db8b5d2c7fed Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Sat, 20 Aug 2022 20:37:00 +0200 Subject: [PATCH] Release 1.2.0. --- CHANGELOG.rst | 24 ++++++++++++++++++++++++ changelogs/changelog.yaml | 18 ++++++++++++++++++ changelogs/fragments/1.2.0.yml | 1 - changelogs/fragments/6-typing.yml | 6 ------ changelogs/fragments/7-config.yml | 2 -- 5 files changed, 42 insertions(+), 9 deletions(-) delete mode 100644 changelogs/fragments/1.2.0.yml delete mode 100644 changelogs/fragments/6-typing.yml delete mode 100644 changelogs/fragments/7-config.yml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f5b3e19..139f8df 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,30 @@ antsibull-core Release Notes .. contents:: Topics +v1.2.0 +====== + +Release Summary +--------------- + +Feature release. + +Minor Changes +------------- + +- Improve typing (https://github.com/ansible-community/antsibull-core/pull/6). +- Make config file management more flexible to allow project-specific config file format extensions for the explicitly passed configuration files (https://github.com/ansible-community/antsibull-core/pull/7). + +Deprecated Features +------------------- + +- The ``DepsFile.write()`` method will require the first parameter to be a ``packaging.version.Version`` object, the second parameter to be a string, and the third parameter a mapping of strings to strings, from antsibull-core 2.0.0 on (https://github.com/ansible-community/antsibull-core/pull/6). + +Bugfixes +-------- + +- Adjust signature of ``DepsFile.write()`` to work around bug in antsibull (https://github.com/ansible-community/antsibull-core/pull/6). + v1.1.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 73192e4..6eb034c 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -40,3 +40,21 @@ releases: - 1.1.0.yml - 5-licenses.yml release_date: '2022-07-31' + 1.2.0: + changes: + bugfixes: + - Adjust signature of ``DepsFile.write()`` to work around bug in antsibull (https://github.com/ansible-community/antsibull-core/pull/6). + deprecated_features: + - The ``DepsFile.write()`` method will require the first parameter to be a ``packaging.version.Version`` + object, the second parameter to be a string, and the third parameter a mapping + of strings to strings, from antsibull-core 2.0.0 on (https://github.com/ansible-community/antsibull-core/pull/6). + minor_changes: + - Improve typing (https://github.com/ansible-community/antsibull-core/pull/6). + - Make config file management more flexible to allow project-specific config + file format extensions for the explicitly passed configuration files (https://github.com/ansible-community/antsibull-core/pull/7). + release_summary: Feature release. + fragments: + - 1.2.0.yml + - 6-typing.yml + - 7-config.yml + release_date: '2022-08-20' diff --git a/changelogs/fragments/1.2.0.yml b/changelogs/fragments/1.2.0.yml deleted file mode 100644 index 512efc9..0000000 --- a/changelogs/fragments/1.2.0.yml +++ /dev/null @@ -1 +0,0 @@ -release_summary: Feature release. diff --git a/changelogs/fragments/6-typing.yml b/changelogs/fragments/6-typing.yml deleted file mode 100644 index 7612b74..0000000 --- a/changelogs/fragments/6-typing.yml +++ /dev/null @@ -1,6 +0,0 @@ -minor_changes: - - "Improve typing (https://github.com/ansible-community/antsibull-core/pull/6)." -bugfixes: - - "Adjust signature of ``DepsFile.write()`` to work around bug in antsibull (https://github.com/ansible-community/antsibull-core/pull/6)." -deprecated_features: - - "The ``DepsFile.write()`` method will require the first parameter to be a ``packaging.version.Version`` object, the second parameter to be a string, and the third parameter a mapping of strings to strings, from antsibull-core 2.0.0 on (https://github.com/ansible-community/antsibull-core/pull/6)." diff --git a/changelogs/fragments/7-config.yml b/changelogs/fragments/7-config.yml deleted file mode 100644 index 98d145b..0000000 --- a/changelogs/fragments/7-config.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - "Make config file management more flexible to allow project-specific config file format extensions for the explicitly passed configuration files (https://github.com/ansible-community/antsibull-core/pull/7)."