From 2b62f6f7263a0353186b61abc8b295c53ff6f53d Mon Sep 17 00:00:00 2001 From: James McKinney <26463+jpmckinney@users.noreply.github.com> Date: Wed, 26 Jun 2024 13:45:53 -0400 Subject: [PATCH] build: Change minor version, as dropping support for old Python --- CHANGELOG.md | 2 +- boundaries/management/commands/loadshapefiles.py | 2 +- setup.cfg | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 95b2778..7e8196d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## 0.9.5 (2024-06-26) +## 0.10.0 (2024-06-26) * Replace n-dashes and m-dashes in boundary set slugs with hyphens. * Add support for Django 3.2 and 4.2. diff --git a/boundaries/management/commands/loadshapefiles.py b/boundaries/management/commands/loadshapefiles.py index 3dd0a97..0967a56 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.9.5' + return '0.10.0' def handle(self, *args, **options): if settings.DEBUG: diff --git a/setup.cfg b/setup.cfg index f39fb63..92797a9 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = represent-boundaries -version = 0.9.5 +version = 0.10.0 author = Open North Inc. author_email = represent@opennorth.ca license = MIT