diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 670ba480..92eb5c4d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,15 @@ Kubernetes Collection Release Notes .. contents:: Topics +v2.0.2 +====== + +Bugfixes +-------- + +- Fix apply for k8s module when an array attribute from definition contains empty dict (https://github.com/ansible-collections/kubernetes.core/issues/113). +- rename the apply function to fix broken imports in Ansible 2.9 (https://github.com/ansible-collections/kubernetes.core/pull/135). + v2.0.1 ====== diff --git a/Makefile b/Makefile index 202321a5..c037367d 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # Also needs to be updated in galaxy.yml -VERSION = 2.0.1 +VERSION = 2.0.2 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 2738ea82..9ce91da2 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,7 @@ You can also include it in a `requirements.yml` file and install it via `ansible --- collections: - name: kubernetes.core - version: 2.0.1 + version: 2.0.2 ``` ### Installing the Kubernetes Python Library diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 5a3bdee5..83046791 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -403,3 +403,13 @@ releases: fragments: - 128-update-inventory-plugin-param.yaml release_date: '2021-06-11' + 2.0.2: + changes: + bugfixes: + - Fix apply for k8s module when an array attribute from definition contains + empty dict (https://github.com/ansible-collections/kubernetes.core/issues/113). + - rename the apply function to fix broken imports in Ansible 2.9 (https://github.com/ansible-collections/kubernetes.core/pull/135). + fragments: + - 129-k8s-fix-apply-array-with-empty-dict.yml + - 135-rename-apply-function.yml + release_date: '2021-06-16' diff --git a/changelogs/fragments/129-k8s-fix-apply-array-with-empty-dict.yml b/changelogs/fragments/129-k8s-fix-apply-array-with-empty-dict.yml deleted file mode 100644 index d6f7dc92..00000000 --- a/changelogs/fragments/129-k8s-fix-apply-array-with-empty-dict.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - Fix apply for k8s module when an array attribute from definition contains empty dict (https://github.com/ansible-collections/kubernetes.core/issues/113). diff --git a/changelogs/fragments/135-rename-apply-function.yml b/changelogs/fragments/135-rename-apply-function.yml deleted file mode 100644 index 965cd6f9..00000000 --- a/changelogs/fragments/135-rename-apply-function.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - rename the apply function to fix broken imports in Ansible 2.9 (https://github.com/ansible-collections/kubernetes.core/pull/135). diff --git a/galaxy.yml b/galaxy.yml index 0fe6126f..b1db9147 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -27,7 +27,7 @@ tags: - openshift - okd - cluster -version: 2.0.1 +version: 2.0.2 build_ignore: - .DS_Store - '*.tar.gz'