Skip to content

Commit

Permalink
v1.0.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
whitej6 committed Sep 19, 2022
2 parents 0a82bcf + 2383c44 commit 299eb55
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## v1.0.1 - 2022-09-18

### Fixed

- #84 Missing Index from PolicyRule form.
- #84 Missing Source/Destination descriptors on Service/Service Group for PolicyRule form.

## v1.0.0 - 2022-08-27

### Removed
Expand Down
2 changes: 1 addition & 1 deletion nautobot_firewall_models/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ class PolicyRuleForm(BootstrapMixin, CustomFieldModelFormMixin, RelationshipMode
)
source_zone = DynamicModelChoiceField(queryset=models.Zone.objects.all(), label="Source Zone", required=False)
source_services = DynamicModelMultipleChoiceField(
queryset=models.ServiceObject.objects.all(), label="Souce Service Objects", required=False
queryset=models.ServiceObject.objects.all(), label="Source Service Objects", required=False
)
source_service_groups = DynamicModelMultipleChoiceField(
queryset=models.ServiceObjectGroup.objects.all(), label="Source Service Object Groups", required=False
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-firewall-models"
version = "1.0.0"
version = "1.0.1"
description = "Nautobot plugin to model firewall objects."
authors = ["Network to Code, LLC <[email protected]>"]
license = "Apache-2.0"
Expand Down

0 comments on commit 299eb55

Please sign in to comment.