From f2601bffbd5754da74bda37fd856113624b787b3 Mon Sep 17 00:00:00 2001 From: Jeff Kala Date: Wed, 18 Sep 2024 15:32:50 -0500 Subject: [PATCH 1/2] prep for 1.9.2 release --- docs/admin/release_notes/version_1.9.md | 14 ++++++++++++++ pyproject.toml | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/docs/admin/release_notes/version_1.9.md b/docs/admin/release_notes/version_1.9.md index bf5a1243..eb40b48f 100755 --- a/docs/admin/release_notes/version_1.9.md +++ b/docs/admin/release_notes/version_1.9.md @@ -6,6 +6,20 @@ - Added DNA Center platform mappings. - Improved error message when duplicate line is parsed. +## [v1.9.2] 2024-09 + +### Added +- [534](https://github.com/networktocode/netutils/pull/534) Extend ip_network extension to support method calls with kwargs. + +### Changed +- [570](https://github.com/networktocode/netutils/pull/570) OUI File Updates. +- [571](https://github.com/networktocode/netutils/pull/571) PROTOCOL File Updates. + +### Fixed + +- [569](https://github.com/networktocode/netutils/pull/569) Fix banner parsers auto striping all newlines. Allow newlines in banners. +- [574](https://github.com/networktocode/netutils/pull/574) Fix ntc_template reverse mapping for cisco xe. + ## [v1.9.1] 2024-08 ### Changed diff --git a/pyproject.toml b/pyproject.toml index 2425d7df..c2b43839 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "netutils" -version = "1.9.1" +version = "1.9.2" description = "Common helper functions useful in network automation." authors = ["Network to Code, LLC "] license = "Apache-2.0" From 06828c18d387d0c4f5bd9a2b0a0598914744fdf2 Mon Sep 17 00:00:00 2001 From: Jeff Kala Date: Wed, 18 Sep 2024 15:49:47 -0500 Subject: [PATCH 2/2] change release to minor 1.10.0 --- docs/admin/release_notes/version_1.10.md | 20 ++++++++++++++++++++ docs/admin/release_notes/version_1.9.md | 14 -------------- pyproject.toml | 2 +- 3 files changed, 21 insertions(+), 15 deletions(-) create mode 100755 docs/admin/release_notes/version_1.10.md diff --git a/docs/admin/release_notes/version_1.10.md b/docs/admin/release_notes/version_1.10.md new file mode 100755 index 00000000..5fcffc42 --- /dev/null +++ b/docs/admin/release_notes/version_1.10.md @@ -0,0 +1,20 @@ +# v1.10 Release Notes + +## Release Overview + +- Added Functionality to ip_network filter to support method calls with kwargs. +- Fix configuration parsers to allow newlines, no longer auto strip all newlines. + +## [v1.10.0] 2024-09 + +### Added +- [534](https://github.com/networktocode/netutils/pull/534) Extend ip_network extension to support method calls with kwargs. + +### Changed +- [570](https://github.com/networktocode/netutils/pull/570) OUI File Updates. +- [571](https://github.com/networktocode/netutils/pull/571) PROTOCOL File Updates. + +### Fixed + +- [569](https://github.com/networktocode/netutils/pull/569) Fix banner parsers auto striping all newlines. Allow newlines in banners. +- [574](https://github.com/networktocode/netutils/pull/574) Fix ntc_template reverse mapping for cisco xe. diff --git a/docs/admin/release_notes/version_1.9.md b/docs/admin/release_notes/version_1.9.md index eb40b48f..bf5a1243 100755 --- a/docs/admin/release_notes/version_1.9.md +++ b/docs/admin/release_notes/version_1.9.md @@ -6,20 +6,6 @@ - Added DNA Center platform mappings. - Improved error message when duplicate line is parsed. -## [v1.9.2] 2024-09 - -### Added -- [534](https://github.com/networktocode/netutils/pull/534) Extend ip_network extension to support method calls with kwargs. - -### Changed -- [570](https://github.com/networktocode/netutils/pull/570) OUI File Updates. -- [571](https://github.com/networktocode/netutils/pull/571) PROTOCOL File Updates. - -### Fixed - -- [569](https://github.com/networktocode/netutils/pull/569) Fix banner parsers auto striping all newlines. Allow newlines in banners. -- [574](https://github.com/networktocode/netutils/pull/574) Fix ntc_template reverse mapping for cisco xe. - ## [v1.9.1] 2024-08 ### Changed diff --git a/pyproject.toml b/pyproject.toml index c2b43839..be2b2746 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "netutils" -version = "1.9.2" +version = "1.10.0" description = "Common helper functions useful in network automation." authors = ["Network to Code, LLC "] license = "Apache-2.0"