From 69304d1c3b1d9cce8aba9343c4da433191be4ce9 Mon Sep 17 00:00:00 2001 From: Mike Graves Date: Fri, 10 Jun 2022 08:29:55 -0400 Subject: [PATCH] Release version 2.3.2 (#475) Release version 2.3.2 SUMMARY Release version 2.3.2 ISSUE TYPE COMPONENT NAME ADDITIONAL INFORMATION Reviewed-by: Alina Buzachis --- CHANGELOG.rst | 9 +++++++++ Makefile | 2 +- README.md | 2 +- changelogs/changelog.yaml | 11 +++++++++++ changelogs/fragments/412_pass_creds.yml | 3 --- changelogs/fragments/456-replace-distutils.yml | 2 -- galaxy.yml | 2 +- 7 files changed, 23 insertions(+), 8 deletions(-) delete mode 100644 changelogs/fragments/412_pass_creds.yml delete mode 100644 changelogs/fragments/456-replace-distutils.yml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 9076315c10..7415986b41 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,15 @@ Kubernetes Collection Release Notes .. contents:: Topics +v2.3.2 +====== + +Minor Changes +------------- + +- helm_repository - mark `pass_credentials` as no_log=True to silence false warning (https://github.com/ansible-collections/kubernetes.core/issues/412). +- kubectl.py - replace distutils.spawn.find_executable with shutil.which in the kubectl connection plugin (https://github.com/ansible-collections/kubernetes.core/pull/456). + v2.3.1 ====== diff --git a/Makefile b/Makefile index eb9cb1ecb8..be157fd4d7 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # Also needs to be updated in galaxy.yml -VERSION = 2.3.1 +VERSION = 2.3.2 TEST_ARGS ?= "" PYTHON_VERSION ?= `python -c 'import platform; print(".".join(platform.python_version_tuple()[0:2]))'` diff --git a/README.md b/README.md index 3614da6165..e86c9d5804 100644 --- a/README.md +++ b/README.md @@ -92,7 +92,7 @@ You can also include it in a `requirements.yml` file and install it via `ansible --- collections: - name: kubernetes.core - version: 2.3.1 + version: 2.3.2 ``` ### Installing the Kubernetes Python Library diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index d31ce1ffe3..ebb5d69c92 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -587,3 +587,14 @@ releases: - 432-fix-issue-when-using-template-parameter.yaml - 434-fix-k8s-delete-using-label_selector.yaml release_date: '2022-05-02' + 2.3.2: + changes: + minor_changes: + - helm_repository - mark `pass_credentials` as no_log=True to silence false + warning (https://github.com/ansible-collections/kubernetes.core/issues/412). + - kubectl.py - replace distutils.spawn.find_executable with shutil.which in + the kubectl connection plugin (https://github.com/ansible-collections/kubernetes.core/pull/456). + fragments: + - 412_pass_creds.yml + - 456-replace-distutils.yml + release_date: '2022-06-09' diff --git a/changelogs/fragments/412_pass_creds.yml b/changelogs/fragments/412_pass_creds.yml deleted file mode 100644 index 59b665c654..0000000000 --- a/changelogs/fragments/412_pass_creds.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -minor_changes: -- helm_repository - mark `pass_credentials` as no_log=True to silence false warning (https://github.com/ansible-collections/kubernetes.core/issues/412). diff --git a/changelogs/fragments/456-replace-distutils.yml b/changelogs/fragments/456-replace-distutils.yml deleted file mode 100644 index dc70d6f68c..0000000000 --- a/changelogs/fragments/456-replace-distutils.yml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - kubectl.py - replace distutils.spawn.find_executable with shutil.which in the kubectl connection plugin (https://github.com/ansible-collections/kubernetes.core/pull/456). diff --git a/galaxy.yml b/galaxy.yml index 8365b02aca..9999291270 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -25,7 +25,7 @@ tags: - openshift - okd - cluster -version: 2.3.1 +version: 2.3.2 build_ignore: - .DS_Store - '*.tar.gz'