diff --git a/CHANGELOG.rst b/CHANGELOG.rst index bc3bbf07..303947a4 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,22 @@ Docker Community Collection Release Notes .. contents:: Topics +v1.0.0 +====== + +Release Summary +--------------- + +This is the first production (non-prerelease) release of ``community.docker``. + + +Minor Changes +------------- + +- Add collection-side support of the ``docker`` action group / module defaults group (https://github.com/ansible-collections/community.docker/pull/17). +- docker_image - return docker build output (https://github.com/ansible-collections/community.general/pull/805). +- docker_secret - add a warning when the secret does not have an ``ansible_key`` label but the ``force`` parameter is not set (https://github.com/ansible-collections/community.docker/issues/30, https://github.com/ansible-collections/community.docker/pull/31). + v0.1.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 58c1436b..2cca24f6 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -70,3 +70,21 @@ releases: - c.g-1119-docker_container-device-reqests.yml - c.g-2.0.0-deprecations.yml release_date: '2020-10-30' + 1.0.0: + changes: + minor_changes: + - Add collection-side support of the ``docker`` action group / module defaults + group (https://github.com/ansible-collections/community.docker/pull/17). + - docker_image - return docker build output (https://github.com/ansible-collections/community.general/pull/805). + - docker_secret - add a warning when the secret does not have an ``ansible_key`` + label but the ``force`` parameter is not set (https://github.com/ansible-collections/community.docker/issues/30, + https://github.com/ansible-collections/community.docker/pull/31). + release_summary: 'This is the first production (non-prerelease) release of ``community.docker``. + + ' + fragments: + - 1.0.0.yml + - 17-action-group.yml + - 31-docker-secret.yml + - community.general-805-docker_image-build-output.yml + release_date: '2020-11-17' diff --git a/changelogs/fragments/1.0.0.yml b/changelogs/fragments/1.0.0.yml deleted file mode 100644 index 7098dd8c..00000000 --- a/changelogs/fragments/1.0.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -release_summary: | - This is the first production (non-prerelease) release of ``community.docker``. diff --git a/changelogs/fragments/17-action-group.yml b/changelogs/fragments/17-action-group.yml deleted file mode 100644 index f0a46fd5..00000000 --- a/changelogs/fragments/17-action-group.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: -- "Add collection-side support of the ``docker`` action group / module defaults group (https://github.com/ansible-collections/community.docker/pull/17)." diff --git a/changelogs/fragments/31-docker-secret.yml b/changelogs/fragments/31-docker-secret.yml deleted file mode 100644 index d4fcca3f..00000000 --- a/changelogs/fragments/31-docker-secret.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - "docker_secret - add a warning when the secret does not have an ``ansible_key`` label but the ``force`` parameter is not set (https://github.com/ansible-collections/community.docker/issues/30, https://github.com/ansible-collections/community.docker/pull/31)." diff --git a/changelogs/fragments/community.general-805-docker_image-build-output.yml b/changelogs/fragments/community.general-805-docker_image-build-output.yml deleted file mode 100644 index ed762094..00000000 --- a/changelogs/fragments/community.general-805-docker_image-build-output.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - "docker_image - return docker build output (https://github.com/ansible-collections/community.general/pull/805)."