Skip to content

Commit 22eb26d

Browse files
Merge pull request #322 from nautobot/release/3.1.1
Release v3.1.1
2 parents cdf4b9b + f0134ff commit 22eb26d

File tree

8 files changed

+719
-600
lines changed

8 files changed

+719
-600
lines changed

.cookiecutter.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
"_drift_manager": {
2020
"template": "https://github.com/nautobot/cookiecutter-nautobot-app.git",
2121
"template_dir": "nautobot-app",
22-
"template_ref": "nautobot-app-v3.1.1",
22+
"template_ref": "nautobot-app-v3.1.3",
2323
"cookie_dir": "",
2424
"pull_request_strategy": "create",
2525
"post_actions": [],
2626
"draft": false,
27-
"baked_commit_ref": "799b2ad59cda22a814ea31435366b205381b708e",
27+
"baked_commit_ref": "ea7457a445042629f49cf89c1cbad691028e8a28",
2828
"drift_managed_branch": "develop"
2929
}
3030
}

docs/admin/release_notes/version_3.1.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ This release adds support for Python 3.14.
88

99
<!-- towncrier release notes start -->
1010

11+
## [v3.1.1 (2026-04-10)](https://github.com/nautobot/nautobot-app-bgp-models/releases/tag/v3.1.1)
12+
13+
### Housekeeping
14+
15+
- Rebaked from the cookie `nautobot-app-v3.1.3`.
16+
1117
## [v3.1.0 (2026-03-17)](https://github.com/nautobot/nautobot-app-bgp-models/releases/tag/v3.1.0)
1218

1319
### Added

docs/assets/extra.css

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,15 @@ img.logo {
5151
height: 200px;
5252
}
5353

54+
a.copyright-sponsor {
55+
display: inline-flex;
56+
align-items: center;
57+
gap: 0.35em;
58+
vertical-align: middle;
59+
}
60+
5461
img.copyright-logo {
5562
height: 24px;
56-
vertical-align: middle;
5763
}
5864

5965
[data-md-color-primary=black] .md-header {

docs/assets/overrides/partials/copyright.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
<a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">Made with Material for MkDocs</a>
1313
| <a href="https://www.networktocode.com/community/open-source/" target="_blank" rel="noopener">Join #Nautobot on the Network to Code Slack</a>
1414
{% if config.extra.ntc_sponsor == true %}
15-
| <a href="https://networktocode.com" target="_blank" rel="noopener">Sponsored by <img
16-
src={{ "assets/networktocode_bw.png" | url }} class="copyright-logo"></a>
15+
| <a href="https://networktocode.com" target="_blank" rel="noopener" class="copyright-sponsor">Sponsored by <img
16+
src={{ "assets/networktocode_bw.png" | url }} class="copyright-logo" alt="Network to Code" width="auto" height="auto"></a>
1717
{% endif %}
1818
</div>
1919

docs/dev/code_reference/api.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# BGP Models API Package
2-
32
::: nautobot_bgp_models.api
43
options:
54
show_submodules: True

poetry.lock

Lines changed: 698 additions & 587 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "nautobot-bgp-models"
3-
version = "3.1.0"
3+
version = "3.1.1"
44
description = "Nautobot BGP Models App"
55
authors = ["Network to Code, LLC <opensource@networktocode.com>"]
66
license = "Apache-2.0"
@@ -68,7 +68,8 @@ mkdocstrings = "0.27.0"
6868
mkdocstrings-python = "1.13.0"
6969
mkdocs-autorefs = "1.3.1"
7070
griffe = "1.1.1"
71-
mkdocs-glightbox = "0.5.2"
71+
# Image lightboxing in mkdocs
72+
mkdocs-glightbox = "~0.5.2"
7273

7374
[tool.poetry.extras]
7475
all = [

tasks.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1042,11 +1042,7 @@ def generate_app_config_schema(context):
10421042
- `NautobotAppConfig.required_settings`
10431043
"""
10441044
start(context, service=["nautobot"])
1045-
nbshell(
1046-
context,
1047-
file="development/app_config_schema.py",
1048-
env={"APP_CONFIG_SCHEMA_COMMAND": "generate"},
1049-
)
1045+
nbshell(context, file="development/app_config_schema.py", env={"APP_CONFIG_SCHEMA_COMMAND": "generate"})
10501046

10511047

10521048
@task

0 commit comments

Comments
 (0)