Skip to content

Commit

Permalink
feat: Make boundary set slug editable
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Jun 26, 2024
1 parent 2b62f6f commit fae1ec7
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.10.1 (2024-06-26)

* Make boundary set slug editable.

## 0.10.0 (2024-06-26)

* Replace n-dashes and m-dashes in boundary set slugs with hyphens.
Expand Down
2 changes: 1 addition & 1 deletion boundaries/management/commands/loadshapefiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def add_arguments(self, parser):
)

def get_version(self):
return '0.10.0'
return '0.10.1'

def handle(self, *args, **options):
if settings.DEBUG:
Expand Down
1 change: 0 additions & 1 deletion boundaries/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ class BoundarySet(models.Model):
slug = models.SlugField(
max_length=200,
primary_key=True,
editable=False,
help_text=_("The boundary set's unique identifier, used as a path component in URLs."),
)
name = models.CharField(
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = represent-boundaries
version = 0.10.0
version = 0.10.1
author = Open North Inc.
author_email = [email protected]
license = MIT
Expand Down

0 comments on commit fae1ec7

Please sign in to comment.