From f5eb0625d6da97bcd228ca05a51b3645a0c46d41 Mon Sep 17 00:00:00 2001 From: Mike Graves Date: Thu, 1 Apr 2021 08:53:03 -0400 Subject: [PATCH] Release 1.2.1 (#406) --- CHANGELOG.rst | 9 +++++++++ Makefile | 2 +- README.md | 2 +- changelogs/changelog.yaml | 9 +++++++++ galaxy.yml | 2 +- utils/downstream.sh | 2 +- 6 files changed, 22 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 8984ddab..fe338716 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,15 @@ Kubernetes Collection Release Notes .. contents:: Topics +v1.2.1 +====== + +Bugfixes +-------- + +- fix missing requirements.txt file in kubernetes.core (https://github.com/ansible-collections/community.kubernetes/pull/401). +- pin molecule version to <3.3.0 to fix breaking changes (https://github.com/ansible-collections/community.kubernetes/pull/403). + v1.2.0 ====== diff --git a/Makefile b/Makefile index 75a7c9eb..8fd7d38d 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # Also needs to be updated in galaxy.yml -VERSION = 1.2.0 +VERSION = 1.2.1 TEST_ARGS ?= "" PYTHON_VERSION ?= `python -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 ab3d2fd7..41d1f084 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ You can also include it in a `requirements.yml` file and install it via `ansible --- collections: - name: community.kubernetes - version: 1.2.0 + version: 1.2.1 ``` ### Installing the OpenShift Python Library diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 6ed156d2..6c4b548c 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -312,3 +312,12 @@ releases: - 368-helm_template.yaml - handle_valueerror.yml release_date: '2021-02-17' + 1.2.1: + changes: + bugfixes: + - fix missing requirements.txt file in kubernetes.core (https://github.com/ansible-collections/community.kubernetes/pull/401). + - pin molecule version to <3.3.0 to fix breaking changes (https://github.com/ansible-collections/community.kubernetes/pull/403). + fragments: + - 401-requirements_file.yaml + - 403-pin-molecule.yaml + release_date: '2021-03-31' diff --git a/galaxy.yml b/galaxy.yml index 9236d149..7872f310 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -26,7 +26,7 @@ tags: - openshift - okd - cluster -version: 1.2.0 +version: 1.2.1 build_ignore: - .DS_Store - '*.tar.gz' diff --git a/utils/downstream.sh b/utils/downstream.sh index b9fa79c0..ef971472 100755 --- a/utils/downstream.sh +++ b/utils/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="1.2.0" +DOWNSTREAM_VERSION="1.2.1" KEEP_DOWNSTREAM_TMPDIR="${KEEP_DOWNSTREAM_TMPDIR:-''}"