diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 48c5552..e6b4254 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,14 @@ OKD Collection Release Notes .. contents:: Topics +v1.1.2 +====== + +Bugfixes +-------- + +- include requirements.txt in downstream build process (https://github.com/ansible-collections/community.okd/pull/81). + v1.1.1 ====== diff --git a/Makefile b/Makefile index 7afe9e4..4a4c9b3 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # Also needs to be updated in galaxy.yml -VERSION = 1.1.1 +VERSION = 1.1.2 # To run sanity tests in a venv, set SANITY_TEST_ARGS to '--venv' SANITY_TEST_ARGS ?= --docker --color diff --git a/README.md b/README.md index 66adf8c..2e2fde8 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ You can also include it in a `requirements.yml` file and install it via `ansible --- collections: - name: community.okd - version: 1.1.1 + version: 1.1.2 ``` ### Installing the OpenShift Python Library diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 4f4a0d3..f3d44ec 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -102,3 +102,10 @@ releases: - 78-add-requirements-file.yaml - 80-update-ci.yaml release_date: '2021-04-06' + 1.1.2: + changes: + bugfixes: + - include requirements.txt in downstream build process (https://github.com/ansible-collections/community.okd/pull/81). + fragments: + - 81-include-requirements.yaml + release_date: '2021-04-08' diff --git a/ci/downstream.sh b/ci/downstream.sh index 800914f..dc1e2d6 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="1.1.1" +DOWNSTREAM_VERSION="1.1.2" KEEP_DOWNSTREAM_TMPDIR="${KEEP_DOWNSTREAM_TMPDIR:-''}" _build_dir="" diff --git a/galaxy.yml b/galaxy.yml index 338e2d4..f12a1a9 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -24,4 +24,4 @@ tags: - okd - cluster # Also needs to be updated in the Makefile -version: 1.1.1 +version: 1.1.2