Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.8.0 #125

Merged
merged 1 commit into from
Aug 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/admin/compatibility_matrix.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
22 changes: 22 additions & 0 deletions docs/admin/release_notes/version_0.8.md
Original file line number Diff line number Diff line change
@@ -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
mzbroch marked this conversation as resolved.
Show resolved Hide resolved
- [#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
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <info@networktocode.com>"]

Expand Down
Loading