Skip to content

Commit

Permalink
Merge pull request #178 from nautobot/mzbroch/release-2.0
Browse files Browse the repository at this point in the history
Release 2.0
  • Loading branch information
mzbroch authored Feb 28, 2024
2 parents a6829bd + 62bdfd4 commit eee4291
Show file tree
Hide file tree
Showing 11 changed files with 691 additions and 533 deletions.
1 change: 1 addition & 0 deletions development/nautobot_config.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Nautobot development configuration file."""

# pylint: disable=invalid-envvar-default
import os
import sys
Expand Down
3 changes: 2 additions & 1 deletion docs/admin/compatibility_matrix.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@
| 0.9.1 | 1.5.4 | 1.99.99 |
| 1.0.0 | 1.5.4 | 1.99.99 |
| 0.20.0 | 2.0.0 | 2.99.99 |
| 0.20.1 | 2.0.0 | 2.99.99 |
| 0.20.1 | 2.0.3 | 2.99.99 |
| 2.0.0 | 2.0.3 | 2.99.99 |
12 changes: 12 additions & 0 deletions docs/admin/release_notes/version_2.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# v2.0 Release Notes

## Release Overview

This release contains a fix for invalid ordering of PeerEndpoints in a Peering and a fix for missing tags.

## Version 2.0

### Fixed

- [#169](https://github.com/nautobot/nautobot-app-bgp-models/pull/169) - Implement ordering of PeerEndpoints in Peering
- [#177](https://github.com/nautobot/nautobot-app-bgp-models/pull/177) - fix: 🐛 missing tags in serializers (Nautobot 2.x)
1 change: 1 addition & 0 deletions nautobot_bgp_models/filter_extensions.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Filter Extensions definitions for nautobot_bgp_models."""

from django import forms

from nautobot.apps.filters import FilterExtension, MultiValueCharFilter
Expand Down
1 change: 1 addition & 0 deletions nautobot_bgp_models/forms.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Forms and FilterForms for nautobot_bgp_models."""

from django import forms

import nautobot.core.forms as utilities_forms
Expand Down
1 change: 1 addition & 0 deletions nautobot_bgp_models/models.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""BGP data models."""

import functools
from collections import OrderedDict

Expand Down
1 change: 1 addition & 0 deletions nautobot_bgp_models/tests/test_basic.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Basic tests that do not require Django."""

import unittest
import os
import toml
Expand Down
1 change: 1 addition & 0 deletions nautobot_bgp_models/tests/test_views.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Unit test automation for Model classes in nautobot_bgp_models."""

import json

from unittest import skipIf
Expand Down
1 change: 1 addition & 0 deletions nautobot_bgp_models/urls.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Django urlpatterns declaration for nautobot_bgp_models app."""

from django.urls import path

from nautobot.core.views.routers import NautobotUIViewSetRouter
Expand Down
1,198 changes: 668 additions & 530 deletions poetry.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "nautobot-bgp-models"
version = "0.20.1"
version = "2.0"
description = "Nautobot BGP Models App"
authors = ["Network to Code, LLC <[email protected]>"]

Expand All @@ -21,10 +21,10 @@ packages = [
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
nautobot = "^2.0.3"
toml = "^0.10.2"

[tool.poetry.dev-dependencies]
invoke = "*"
toml = "*"
black = "*"
django-debug-toolbar = "*"
yamllint = "*"
Expand Down

0 comments on commit eee4291

Please sign in to comment.