diff --git a/.bumpversion.toml b/.bumpversion.toml index 1c2072f..2b475d6 100644 --- a/.bumpversion.toml +++ b/.bumpversion.toml @@ -1,5 +1,5 @@ [tool.bumpversion] -current_version = "1.4.1" +current_version = "1.5.0" parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)" serialize = ["{major}.{minor}.{patch}"] search = "{current_version}" diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e1704b..da8839d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ and the versioning aim to respect [Semantic Versioning](http://semver.org/spec/v Here is a template for new release sections -## [Unreleased] +## [1.5.0] - 2024-04-24 ### Added - multiple basemaps possible diff --git a/django_mapengine/__init__.py b/django_mapengine/__init__.py index a95287e..d0a85bf 100644 --- a/django_mapengine/__init__.py +++ b/django_mapengine/__init__.py @@ -1,3 +1,3 @@ """Map Engine init, holds version""" -__version__ = "1.4.1" +__version__ = "1.5.0" diff --git a/pyproject.toml b/pyproject.toml index 7eb4e5f..84bd1c3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "django-mapengine" -version = "1.4.1" +version = "1.5.0" description = "Map engine for maplibre in django" authors = ["Hendrik Huyskens "] readme = "README.md"