Skip to content

Commit

Permalink
chore(version): Bump version to 0.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
pheus committed Jul 17, 2024
1 parent 42499e6 commit ee86586
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ body:
attributes:
label: NetBox ACI Plugin version
description: What version of NetBox ACI Plugin are you currently running?
placeholder: v0.0.7
placeholder: v0.0.8
validations:
required: true
- type: input
attributes:
label: NetBox version
description: What version of NetBox are you currently running?
placeholder: v4.0.6
placeholder: v4.0.7
validations:
required: true
- type: dropdown
Expand Down
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/feature_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ body:
attributes:
label: NetBox ACI Plugin version
description: What version of NetBox ACI Plugin are you currently running?
placeholder: v0.0.7
placeholder: v0.0.8
validations:
required: true
- type: input
attributes:
label: NetBox version
description: What version of NetBox are you currently running?
placeholder: v4.0.6
placeholder: v4.0.7
validations:
required: true
- type: dropdown
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ repos:
exclude: ^.devcontainer/

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: "v0.5.1"
rev: "v0.5.2"
hooks:
# Run the linter.
- id: ruff
Expand Down
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,27 @@

---

## 0.0.8 (2024-07-17)

### Enhancements

* Rename plugin's verbose name to "ACI" for simplicity and better user
experience
* Allow referenced NetBox tenants to be deleted without raising a
ProtectedError
* Enable cascade deletion of ACI Bridge Domain Subnets when the parent ACI
Bridge Domain gets deleted
* Enhance tests for the models ACITenant, ACIVRF, ACIBridgeDomain,
ACIBridgeDomainSubnet, ACIAppProfile, ACIEndpointGroup
* Ensure ACI Bridge Domain assigned ACI VRF belongs to the same ACI Tenant or
to the special ACI Tenant 'common' on the model level
* Enforce ACI Endpoint Group assigned ACI Bridge Domain belongs to the same
ACI Tenant or the special ACI Tenant 'common' on the model level

### Bug Fixes

* Remove NetBox tenant filtering in the ACI object forms

## 0.0.7 (2024-07-07)

### Enhancements
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Documentation: https://pheus.github.io/netbox-aci-plugin/

| NetBox Version | Plugin Version |
|----------------|----------------|
| 4.0 | 0.0.7 |
| 4.0 | 0.0.8 |

## Installing

Expand Down
2 changes: 1 addition & 1 deletion netbox_aci_plugin/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__author__ = """Martin Hauser"""
__email__ = "[email protected]"
__version__ = "0.0.7"
__version__ = "0.0.8"


from netbox.plugins import PluginConfig
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "netbox-aci-plugin"
version = "0.0.7"
version = "0.0.8"
authors = [
{name = "Martin Hauser", email = "[email protected]"},
]
Expand All @@ -33,7 +33,7 @@ test = [
"isort",
"pre-commit==3.7.1",
"pytest==8.2.2",
"ruff==0.5.1",
"ruff==0.5.2",
"yamllint",
]

Expand Down
4 changes: 2 additions & 2 deletions requirements_dev.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
check-manifest==0.49
isort==5.13.2
pip==24.1
pip==24.1.2
pre-commit==3.7.1
pytest==8.2.2
ruff==0.5.1
ruff==0.5.2
yamllint==1.35.1

0 comments on commit ee86586

Please sign in to comment.