Skip to content

Commit

Permalink
Merge pull request #310 from nautobot/patch-version_2_2_3
Browse files Browse the repository at this point in the history
Update version with patch.
  • Loading branch information
chadell authored Jul 5, 2024
2 parents 1717e92 + c90efa6 commit 947c93e
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 1 deletion.
8 changes: 8 additions & 0 deletions docs/admin/release_notes/version_2.2.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# v2.2 Release Notes

<!-- towncrier release notes start -->

## [v2.2.3 (2024-07-03)](https://github.com/nautobot/nautobot-app-circuit-maintenance/releases/tag/v2.2.3)

### Documentation

- [#345](https://github.com/nautobot/nautobot-app-circuit-maintenance/issues/345) - Updated app config and urls to populate documentation link.


## [v2.2.2 (2024-06-04)](https://github.com/nautobot/nautobot-app-circuit-maintenance/releases/tag/v2.2.2)

### Fixed
Expand Down
1 change: 1 addition & 0 deletions nautobot_circuit_maintenance/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ class CircuitMaintenanceConfig(NautobotAppConfig):
}
caching_config = {}
home_view_name = "plugins:nautobot_circuit_maintenance:circuitmaintenance_overview"
docs_view_name = "plugins:nautobot_circuit_maintenance:docs"

def ready(self):
"""Perform initialization tasks required once the app is ready."""
Expand Down
4 changes: 4 additions & 0 deletions nautobot_circuit_maintenance/urls.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
"""URLS for Circuit Maintenance."""

from django.urls import path
from django.templatetags.static import static
from django.views.generic import RedirectView

from nautobot.extras.views import ObjectChangeLogView

from . import views
Expand Down Expand Up @@ -86,4 +89,5 @@
name="notificationsource_changelog",
kwargs={"model": NotificationSource},
),
path("docs/", RedirectView.as_view(url=static("nautobot_circuit_maintenance/docs/index.html")), name="docs"),
]
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-circuit-maintenance"
version = "2.2.2"
version = "2.2.3"
description = "Nautobot app to automatically handle Circuit Maintenances Notifications"
authors = ["Network to Code, LLC <[email protected]>"]
license = "Apache-2.0"
Expand Down

0 comments on commit 947c93e

Please sign in to comment.