diff --git a/CHANGELOG.rst b/CHANGELOG.rst index bfe6864..20e5498 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,15 @@ Ansible Utils Collection Release Notes .. contents:: Topics +v2.0.2 +====== + +Bugfixes +-------- + +- Fix cli_parse template_path read error (https://github.com/ansible-collections/ansible.utils/pull/51). +- Fix jsonschema input data format checking (https://github.com/ansible-collections/ansible.utils/pull/50). + v2.0.1 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 0e81d6e..d926a6f 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -76,3 +76,12 @@ releases: - ansible-doc.yaml - cli_parse_fix.yaml release_date: '2021-02-25' + 2.0.2: + changes: + bugfixes: + - Fix cli_parse template_path read error (https://github.com/ansible-collections/ansible.utils/pull/51). + - Fix jsonschema input data format checking (https://github.com/ansible-collections/ansible.utils/pull/50). + fragments: + - cli_parse_errors_return.yaml + - jsonschema_data_validation_fix.yaml + release_date: '2021-03-29' diff --git a/changelogs/fragments/cli_parse_errors_return.yaml b/changelogs/fragments/cli_parse_errors_return.yaml deleted file mode 100644 index 9b173ed..0000000 --- a/changelogs/fragments/cli_parse_errors_return.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - Fix cli_parse template_path read error (https://github.com/ansible-collections/ansible.utils/pull/51). diff --git a/changelogs/fragments/jsonschema_data_validation_fix.yaml b/changelogs/fragments/jsonschema_data_validation_fix.yaml deleted file mode 100644 index 3c22a52..0000000 --- a/changelogs/fragments/jsonschema_data_validation_fix.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - Fix jsonschema input data format checking (https://github.com/ansible-collections/ansible.utils/pull/50).