diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e8196d..fa58b54 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/boundaries/management/commands/loadshapefiles.py b/boundaries/management/commands/loadshapefiles.py index 0967a56..da5c9e0 100644 --- a/boundaries/management/commands/loadshapefiles.py +++ b/boundaries/management/commands/loadshapefiles.py @@ -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: diff --git a/boundaries/models.py b/boundaries/models.py index ef820cc..5d4bc16 100644 --- a/boundaries/models.py +++ b/boundaries/models.py @@ -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( diff --git a/setup.cfg b/setup.cfg index 92797a9..fd194c4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = represent-boundaries -version = 0.10.0 +version = 0.10.1 author = Open North Inc. author_email = represent@opennorth.ca license = MIT