From d154967c888602c9e468e9efd5a4f0f00ee9e0e8 Mon Sep 17 00:00:00 2001 From: Mike Graves Date: Tue, 2 Nov 2021 08:47:24 -0400 Subject: [PATCH] Release 2.1.0 (#124) --- CHANGELOG.rst | 14 ++++++++++++++ Makefile | 2 +- README.md | 2 +- changelogs/changelog.yaml | 13 +++++++++++++ changelogs/fragments/0-copy_ignore_txt.yml | 3 --- changelogs/fragments/100-fix-broken-links.yml | 3 --- changelogs/fragments/102-support-turbo-mode.yaml | 3 --- ...openshift_route-add-support-for-annotations.yml | 2 -- ci/downstream.sh | 2 +- galaxy.yml | 2 +- requirements.yml | 2 +- 11 files changed, 32 insertions(+), 16 deletions(-) delete mode 100644 changelogs/fragments/0-copy_ignore_txt.yml delete mode 100644 changelogs/fragments/100-fix-broken-links.yml delete mode 100644 changelogs/fragments/102-support-turbo-mode.yaml delete mode 100644 changelogs/fragments/99-openshift_route-add-support-for-annotations.yml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0db3b9d..d0e87e2 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,20 @@ OKD Collection Release Notes .. contents:: Topics +v2.1.0 +====== + +Minor Changes +------------- + +- add support for turbo mode (https://github.com/openshift/community.okd/pull/102). +- openshift_route - Add support for Route annotations (https://github.com/ansible-collections/community.okd/pull/99). + +Bugfixes +-------- + +- fix broken links in Automation Hub for redhat.openshift (https://github.com/openshift/community.okd/issues/100). + v2.0.1 ====== diff --git a/Makefile b/Makefile index 8d2ffcc..56c5644 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ .PHONY: molecule # Also needs to be updated in galaxy.yml -VERSION = 2.0.1 +VERSION = 2.1.0 SANITY_TEST_ARGS ?= --docker --color PYTHON_VERSION ?= `python3 -c 'import platform; print("{0}.{1}".format(platform.python_version_tuple()[0], platform.python_version_tuple()[1]))'` diff --git a/README.md b/README.md index 178a77e..ab4ad1c 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ You can also include it in a `requirements.yml` file and install it via `ansible --- collections: - name: community.okd - version: 2.0.1 + version: 2.1.0 ``` ### Installing the Kubernetes Python Library diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 3e99ca6..a4b3614 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -136,3 +136,16 @@ releases: fragments: - 97-bump-k8s-version.yaml release_date: '2021-06-24' + 2.1.0: + changes: + bugfixes: + - fix broken links in Automation Hub for redhat.openshift (https://github.com/openshift/community.okd/issues/100). + minor_changes: + - add support for turbo mode (https://github.com/openshift/community.okd/pull/102). + - openshift_route - Add support for Route annotations (https://github.com/ansible-collections/community.okd/pull/99). + fragments: + - 0-copy_ignore_txt.yml + - 100-fix-broken-links.yml + - 102-support-turbo-mode.yaml + - 99-openshift_route-add-support-for-annotations.yml + release_date: '2021-10-20' diff --git a/changelogs/fragments/0-copy_ignore_txt.yml b/changelogs/fragments/0-copy_ignore_txt.yml deleted file mode 100644 index ec804d2..0000000 --- a/changelogs/fragments/0-copy_ignore_txt.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -trivial: - - Copy ignore.txt. diff --git a/changelogs/fragments/100-fix-broken-links.yml b/changelogs/fragments/100-fix-broken-links.yml deleted file mode 100644 index ada2d94..0000000 --- a/changelogs/fragments/100-fix-broken-links.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - fix broken links in Automation Hub for redhat.openshift (https://github.com/openshift/community.okd/issues/100). diff --git a/changelogs/fragments/102-support-turbo-mode.yaml b/changelogs/fragments/102-support-turbo-mode.yaml deleted file mode 100644 index 10fe9c2..0000000 --- a/changelogs/fragments/102-support-turbo-mode.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -minor_changes: - - add support for turbo mode (https://github.com/openshift/community.okd/pull/102). diff --git a/changelogs/fragments/99-openshift_route-add-support-for-annotations.yml b/changelogs/fragments/99-openshift_route-add-support-for-annotations.yml deleted file mode 100644 index 82c7269..0000000 --- a/changelogs/fragments/99-openshift_route-add-support-for-annotations.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - openshift_route - Add support for Route annotations (https://github.com/ansible-collections/community.okd/pull/99). diff --git a/ci/downstream.sh b/ci/downstream.sh index ec7fdd3..8e57278 100755 --- a/ci/downstream.sh +++ b/ci/downstream.sh @@ -9,7 +9,7 @@ # - All functions are prefixed with f_ so it's obvious where they come # from when in use throughout the script -DOWNSTREAM_VERSION="2.0.1" +DOWNSTREAM_VERSION="2.1.0" KEEP_DOWNSTREAM_TMPDIR="${KEEP_DOWNSTREAM_TMPDIR:-''}" _build_dir="" diff --git a/galaxy.yml b/galaxy.yml index c7420c3..a0924d2 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -24,4 +24,4 @@ tags: - okd - cluster # Also needs to be updated in the Makefile -version: 2.0.1 +version: 2.1.0 diff --git a/requirements.yml b/requirements.yml index a062576..985c0f9 100644 --- a/requirements.yml +++ b/requirements.yml @@ -1,3 +1,3 @@ collections: - name: kubernetes.core - version: '>=2.1.0,<2.2.0' + version: '>=2.1.0,<2.3.0'