diff --git a/docs/admin/compatibility_matrix.md b/docs/admin/compatibility_matrix.md index ac35baa..2e92528 100644 --- a/docs/admin/compatibility_matrix.md +++ b/docs/admin/compatibility_matrix.md @@ -4,3 +4,4 @@ |--------------------|--------------------------------|-------------------------------| | 0.7.0 | 1.3.0 | 1.99.99 | | 0.7.1 | 1.5.4 | 1.99.99 | +| 0.8.0 | 1.5.4 | 1.99.99 | diff --git a/docs/admin/release_notes/version_0.8.md b/docs/admin/release_notes/version_0.8.md new file mode 100644 index 0000000..8eb3101 --- /dev/null +++ b/docs/admin/release_notes/version_0.8.md @@ -0,0 +1,22 @@ +# v0.8 Release Notes + +## Release Overview + +- BGP Models v0.8 release + +## [v0.8.0] - 2023-08-24 + +### Added +- [#91](https://github.com/nautobot/nautobot-plugin-bgp-models/issues/91) - Implements Nautobot Viewsets for UI and API +- [#91](https://github.com/nautobot/nautobot-plugin-bgp-models/issues/91) - Adds Nautobot Notes support +- [#96](https://github.com/nautobot/nautobot-plugin-bgp-models/pull/96) - Adds CSV Imports / Exports +- [#97](https://github.com/nautobot/nautobot-plugin-bgp-models/issues/97) - Adds `Status` field on `BGPRoutingInstance` model +- [#114](https://github.com/nautobot/nautobot-plugin-bgp-models/pull/114) - Adds `Device Role` and `Peer Endpoint Role` filters on `Peering` model + +### Changed +- [#96](https://github.com/nautobot/nautobot-plugin-bgp-models/pull/96) - Renames field `template` to `peergroup_template` on `PeerGroup` model +- [#116](https://github.com/nautobot/nautobot-plugin-bgp-models/pull/116) - Disables endpoint ordering in `Peering` table +- [#122](https://github.com/nautobot/nautobot-plugin-bgp-models/pull/122) - Removes mandatory `Provider` field for external `Peer Endpoints` + +### Removed +- [#124](https://github.com/nautobot/nautobot-plugin-bgp-models/pull/124) - Removes support for Python 3.7 diff --git a/mkdocs.yml b/mkdocs.yml index 83bb0b6..0595a80 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -109,6 +109,7 @@ nav: - Release Notes: - "admin/release_notes/index.md" - v0.7: "admin/release_notes/version_0.7.md" + - v0.8: "admin/release_notes/version_0.8.md" - Developer Guide: - BGP Data Models: "dev/models.md" - Extending the App: "dev/extending.md" diff --git a/pyproject.toml b/pyproject.toml index b4f7478..130189b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "nautobot-bgp-models" -version = "0.7.1" +version = "0.8.0" description = "Nautobot BGP Models Plugin" authors = ["Network to Code, LLC "]