From 60e9aa067bafd6142ff13f43a621b55ca5f6c76a Mon Sep 17 00:00:00 2001 From: Mikhail Yohman Date: Sun, 10 Jan 2021 00:58:38 -0700 Subject: [PATCH] Release v.1.2.1 (#410) --- CHANGELOG.rst | 8 ++++++++ changelogs/changelog.yaml | 7 +++++++ changelogs/fragments/.gitkeep | 0 galaxy.yml | 4 ++-- pyproject.toml | 2 +- 5 files changed, 18 insertions(+), 3 deletions(-) create mode 100644 changelogs/fragments/.gitkeep diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 08c2fd4db..fbb3313d5 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,14 @@ Netbox.Netbox Release Notes .. contents:: Topics +v1.2.1 +====== + +Bugfixes +-------- + +- Allow IDs to be passed into objects that accept a list (https://github.com/netbox-community/ansible_modules/issues/407) + v1.2.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 75a8f38e6..6f793a1cc 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -447,3 +447,10 @@ releases: name: netbox_tag namespace: '' release_date: '2020-12-27' + 1.2.1: + changes: + bugfixes: + - Allow IDs to be passed into objects that accept a list (https://github.com/netbox-community/ansible_modules/issues/407) + fragments: + - tags.yml + release_date: '2021-01-10' diff --git a/changelogs/fragments/.gitkeep b/changelogs/fragments/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/galaxy.yml b/galaxy.yml index 7c0fd5df4..9d06ea245 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -9,7 +9,7 @@ namespace: netbox name: netbox # The version of the collection. Must be compatible with semantic versioning -version: 1.2.0 +version: 1.2.1 # The path to the Markdown (.md) readme file. This path is relative to the root of the collection readme: README.md @@ -56,7 +56,7 @@ dependencies: repository: https://github.com/netbox-community/ansible_modules # The URL to any online docs -documentation: +documentation: https://netbox-ansible-collection.readthedocs.io/en/latest/ # The URL to the homepage of the collection/project homepage: diff --git a/pyproject.toml b/pyproject.toml index 1ac34680e..a97a06327 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "netbox_ansible_modules" -version = "1.1.10" +version = "1.2.1" description = "Ansible collection to interact with NetBox's API" authors = ["Mikhail Yohman "] license = "GPLv3"