From 7077a053093df5c697ecf55dca884fab6b9f114c Mon Sep 17 00:00:00 2001 From: Fabio Bertagna <33524186+DonGiovanni83@users.noreply.github.com> Date: Tue, 23 Apr 2024 17:37:57 +0200 Subject: [PATCH] Release v1.1.0 (#110) * Update galaxy.yml verision 1.1.0 * Set version_added in interfaces_assignments * Prepare changelog v1.1.0 --- CHANGELOG.rst | 13 +++++++++++++ changelogs/changelog.yaml | 13 +++++++++++++ .../109-use-product-series-in-version-detection.yml | 4 ---- galaxy.yml | 2 +- plugins/modules/interfaces_assignments.py | 1 + 5 files changed, 28 insertions(+), 5 deletions(-) delete mode 100644 changelogs/fragments/109-use-product-series-in-version-detection.yml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a309b88b..57125455 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,19 @@ OPNsense Collection Release Notes .. contents:: Topics +v1.1.0 +====== + +Bugfixes +-------- + +- version_util - Use `product_series` for version detection to avoid minor version mismatches. + +New Modules +----------- + +- interfaces_assignments - This module can be used to assign interfaces to network ports and network IDs to new interfaces. + v1.0.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 6e8b3bbe..114ffaf3 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -16,3 +16,16 @@ releases: name: system_settings_logging namespace: '' release_date: '2024-04-20' + 1.1.0: + changes: + bugfixes: + - version_util - Use `product_series` for version detection to avoid minor version + mismatches. + fragments: + - 109-use-product-series-in-version-detection.yml + modules: + - description: This module can be used to assign interfaces to network ports and + network IDs to new interfaces. + name: interfaces_assignments + namespace: '' + release_date: '2024-04-23' diff --git a/changelogs/fragments/109-use-product-series-in-version-detection.yml b/changelogs/fragments/109-use-product-series-in-version-detection.yml deleted file mode 100644 index a497aff3..00000000 --- a/changelogs/fragments/109-use-product-series-in-version-detection.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -bugfixes: - - version_util - Use `product_series` for version detection to avoid minor version - mismatches. \ No newline at end of file diff --git a/galaxy.yml b/galaxy.yml index 121d3968..16b1b6f4 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -2,7 +2,7 @@ namespace: puzzle name: opnsense -version: 1.0.0 +version: 1.1.0 readme: README.md authors: - Lukas Grimm (github.com/ombre8) diff --git a/plugins/modules/interfaces_assignments.py b/plugins/modules/interfaces_assignments.py index 2d0b0fe3..2ea53729 100644 --- a/plugins/modules/interfaces_assignments.py +++ b/plugins/modules/interfaces_assignments.py @@ -16,6 +16,7 @@ author: - Kilian Soltermann (@killuuuhh) module: interfaces_assignments +version_added: "1.1.0" short_description: This module can be used to assign interfaces to network ports and network IDs to new interfaces. description: - Module to assign interfaces to network ports and network IDs to new interfaces.