diff --git a/docs/changelog.md b/docs/changelog.md index 73be025..b0987a9 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,5 +1,15 @@ # Changelog +## 0.4.1 +--- + +### Bug Fixes + +- [#237](https://github.com/netboxlabs/netbox-custom-objects/issues/237) - Incorrect validation error when adding multiple fields pointing to the same Custom Object Type +- [#251](https://github.com/netboxlabs/netbox-custom-objects/issues/251) - Bulk import broken due to incorrect slug handling +- [#273](https://github.com/netboxlabs/netbox-custom-objects/issues/273) - `group_name` missing from Custom Object Type serializer + + ## 0.4.0 --- diff --git a/netbox_custom_objects/__init__.py b/netbox_custom_objects/__init__.py index 652d121..4363f14 100644 --- a/netbox_custom_objects/__init__.py +++ b/netbox_custom_objects/__init__.py @@ -48,7 +48,7 @@ class CustomObjectsPluginConfig(PluginConfig): name = "netbox_custom_objects" verbose_name = "Custom Objects" description = "A plugin to manage custom objects in NetBox" - version = "0.4.0" + version = "0.4.1" author = 'Netbox Labs' author_email = 'support@netboxlabs.com' base_url = "custom-objects" diff --git a/pyproject.toml b/pyproject.toml index d63113a..17423ab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "netboxlabs-netbox-custom-objects" -version = "0.4.0" +version = "0.4.1" description = "A plugin to manage custom objects in NetBox" readme = "README.md" requires-python = ">=3.10"