From 2c03cc2c91c20ff6d1c1845d2ae1edf29b631a99 Mon Sep 17 00:00:00 2001 From: Artem Kotik Date: Sun, 10 Nov 2024 12:47:19 +0100 Subject: [PATCH] Version 2.8.0 --- docs/changelog.md | 12 ++++++++++++ netbox_config_diff/__init__.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/docs/changelog.md b/docs/changelog.md index 14f44e4..ae4a828 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,6 +1,18 @@ # Changelog +## 2.8.0 (2024-11-10) + +* [#76](https://github.com/miaow2/netbox-config-diff/issues/76) Add in NetBox 4.0 and higher some statistics for diff +* [#81](https://github.com/miaow2/netbox-config-diff/issues/81) Fix error in rendering config with several substitutes +* [#84](https://github.com/miaow2/netbox-config-diff/issues/84) Strip multiple empty lines in configs + +## 2.7.0 (2024-09-29) + +* [#79](https://github.com/miaow2/netbox-config-diff/issues/79) Add support for NetBox 4.1 + +This release drops support for NetBox 3.6. + ## 2.6.0 (2024-07-14) * [#62](https://github.com/miaow2/netbox-config-diff/issues/62) Add support for NetBox 4.0 diff --git a/netbox_config_diff/__init__.py b/netbox_config_diff/__init__.py index 2600791..eddf5f7 100644 --- a/netbox_config_diff/__init__.py +++ b/netbox_config_diff/__init__.py @@ -8,7 +8,7 @@ __author__ = "Artem Kotik" __email__ = "miaow2@yandex.ru" -__version__ = "2.7.0" +__version__ = "2.8.0" class ConfigDiffConfig(PluginConfig):