diff --git a/ansible_collections/f5networks/f5_modules/CHANGELOG.rst b/ansible_collections/f5networks/f5_modules/CHANGELOG.rst index 0a71759..7387049 100644 --- a/ansible_collections/f5networks/f5_modules/CHANGELOG.rst +++ b/ansible_collections/f5networks/f5_modules/CHANGELOG.rst @@ -4,6 +4,14 @@ F5Networks F5\_Modules Collection Release Notes .. contents:: Topics +v1.30.0 +======= + +Minor Changes +------------- + +- bigip_ucs - Fix for bigip_ucs module to restore UCS file on BIG-IP devices. + v1.29.0 ======= diff --git a/ansible_collections/f5networks/f5_modules/changelogs/changelog.yaml b/ansible_collections/f5networks/f5_modules/changelogs/changelog.yaml index 70abc00..d048a94 100644 --- a/ansible_collections/f5networks/f5_modules/changelogs/changelog.yaml +++ b/ansible_collections/f5networks/f5_modules/changelogs/changelog.yaml @@ -1132,6 +1132,13 @@ releases: name: bigip_ssl_csr namespace: '' release_date: '2020-04-22' + 1.30.0: + changes: + minor_changes: + - bigip_ucs - Fix for bigip_ucs module to restore UCS file on BIG-IP devices. + fragments: + - bigip-ucs-restore-fix.yaml + release_date: '2024-08-01' 1.4.0: changes: bugfixes: diff --git a/ansible_collections/f5networks/f5_modules/changelogs/fragments/bigip-ucs-restore-fix.yaml b/ansible_collections/f5networks/f5_modules/changelogs/fragments/bigip-ucs-restore-fix.yaml deleted file mode 100644 index 6a4e6f3..0000000 --- a/ansible_collections/f5networks/f5_modules/changelogs/fragments/bigip-ucs-restore-fix.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -minor_changes: - - bigip_ucs - Fix for bigip_ucs module to restore UCS file on BIG-IP devices. \ No newline at end of file diff --git a/ansible_collections/f5networks/f5_modules/galaxy.yml b/ansible_collections/f5networks/f5_modules/galaxy.yml index 95351ac..36f24f6 100644 --- a/ansible_collections/f5networks/f5_modules/galaxy.yml +++ b/ansible_collections/f5networks/f5_modules/galaxy.yml @@ -1,6 +1,5 @@ authors: - Wojciech Wypior (@wojtek0806) - - Rohit Upadhyay (@urohit011) dependencies: ansible.netcommon: ">=2.0.0" description: F5 BIG-IP Imperative Collection for Ansible @@ -13,16 +12,11 @@ name: f5_modules namespace: f5networks readme: README.md build_ignore: - - tests/*.ini - - tests/*.py - - tests/.pytest_cache - - tests/module_utils - - tests/utils - - tests/sanity + - tests repository: https://github.com/F5Networks/f5-ansible-f5modules tags: - f5 - networking - bigip - bigiq -version: 1.30.0-devel +version: 1.30.0 diff --git a/ansible_collections/f5networks/f5_modules/plugins/module_utils/version.py b/ansible_collections/f5networks/f5_modules/plugins/module_utils/version.py index ee5dc21..18a6db6 100644 --- a/ansible_collections/f5networks/f5_modules/plugins/module_utils/version.py +++ b/ansible_collections/f5networks/f5_modules/plugins/module_utils/version.py @@ -4,4 +4,4 @@ # GNU General Public License v3.0 (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) # This collection version needs to be updated at each release -CURRENT_COLL_VERSION = "1.30.0-devel" +CURRENT_COLL_VERSION = "1.30.0"