diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b68e2674..0bf816a7 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,16 @@ ovirt.ovirt Release Notes .. contents:: Topics +v2.4.3 +====== + +Bugfixes +-------- + +- ovirt_disk - Fix issue in detaching the direct LUN (https://github.com/oVirt/ovirt-ansible-collection/pull/700). +- ovirt_quota - Convert storage size to integer (https://github.com/oVirt/ovirt-ansible-collection/pull/712). +- ovirt_role - Fix administrative option when set to False (https://github.com/oVirt/ovirt-ansible-collection/pull/723). + v2.4.2 ====== diff --git a/build.sh b/build.sh index 139270a1..0f6948fa 100755 --- a/build.sh +++ b/build.sh @@ -1,8 +1,10 @@ #!/bin/bash VERSION="2.4.3" -MILESTONE="master" -RPM_RELEASE="0.1.$MILESTONE.$(date -u +%Y%m%d%H%M%S)" +# MILESTONE="master" +MILESTONE="" +# RPM_RELEASE="0.1.$MILESTONE.$(date -u +%Y%m%d%H%M%S)" +RPM_RELEASE="1" BUILD_TYPE=$2 BUILD_PATH=$3 diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index cd789d1c..86da74dd 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -908,3 +908,14 @@ releases: - 663-replace-getargspec-with-getfullargspec.yml - 667-wait-for-host-to-be-in-result-state.yml release_date: '2023-01-24' + 2.4.3: + changes: + bugfixes: + - ovirt_disk - Fix issue in detaching the direct LUN (https://github.com/oVirt/ovirt-ansible-collection/pull/700) + - ovirt_quota - Convert storage size to integer (https://github.com/oVirt/ovirt-ansible-collection/pull/712) + - ovirt_role - Fix administrative option when set to False (https://github.com/oVirt/ovirt-ansible-collection/pull/723). + fragments: + - 700-fix-directlun.yml + - 712-ovirt_quota-fix-storage-size-typecast.yml + - 723-ovirt_role-fix-administrative-condition.yml + release_date: '2023-10-11' diff --git a/changelogs/fragments/700-fix-directlun.yml b/changelogs/fragments/700-fix-directlun.yml deleted file mode 100644 index 94d7b60b..00000000 --- a/changelogs/fragments/700-fix-directlun.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - ovirt_disk - Fix issue in detaching the direct LUN (https://github.com/oVirt/ovirt-ansible-collection/pull/700) diff --git a/changelogs/fragments/712-ovirt_quota-fix-storage-size-typecast.yml b/changelogs/fragments/712-ovirt_quota-fix-storage-size-typecast.yml deleted file mode 100644 index b9f24adc..00000000 --- a/changelogs/fragments/712-ovirt_quota-fix-storage-size-typecast.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - ovirt_quota - Convert storage size to integer (https://github.com/oVirt/ovirt-ansible-collection/pull/712) diff --git a/changelogs/fragments/723-ovirt_role-fix-administrative-condition.yml b/changelogs/fragments/723-ovirt_role-fix-administrative-condition.yml deleted file mode 100644 index 926e40ce..00000000 --- a/changelogs/fragments/723-ovirt_role-fix-administrative-condition.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - ovirt_role - Fix administrative option when set to False (https://github.com/oVirt/ovirt-ansible-collection/pull/723). diff --git a/ovirt-ansible-collection.spec.in b/ovirt-ansible-collection.spec.in index d787049b..7e9fb51f 100644 --- a/ovirt-ansible-collection.spec.in +++ b/ovirt-ansible-collection.spec.in @@ -87,6 +87,11 @@ sh build.sh install %{collectionname} %license licenses %changelog +* Wed Oct 11 2023 Martin Necas - 2.4.3-1 +- ovirt_disk - Fix issue in detaching the direct LUN +- ovirt_quota - Convert storage size to integer +- ovirt_role - Fix administrative option when set to False + * Tue Jan 24 2023 Martin Necas - 2.4.2-1 - info modules - Use dynamic collection name instead of ovirt.ovirt for deprecation warning - module_utils - Replace `getargspec` with `getfullargspec` to support newer python 3.y versions