From 2d27ac5886bd7edb936c35d1bd6f349d11d7a484 Mon Sep 17 00:00:00 2001 From: Hendrik Huyskens Date: Tue, 7 May 2024 10:41:15 +0200 Subject: [PATCH] Bump version to v1.0.0 --- CHANGELOG.md | 2 +- digiplan/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5da6014e..e508c9f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project tries to adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [1.0.0] - 2024-05-07 ### Added - light and dark basemaps for data visualization - coupling of duplicated map panel controls diff --git a/digiplan/__init__.py b/digiplan/__init__.py index fd7b3eca..ab8b1e66 100644 --- a/digiplan/__init__.py +++ b/digiplan/__init__.py @@ -1,4 +1,4 @@ """Digiplan init - holds current version.""" -__version__ = "0.1.0" +__version__ = "1.0.0" __version_info__ = tuple([int(num) if num.isdigit() else num for num in __version__.replace("-", ".", 1).split(".")]) diff --git a/pyproject.toml b/pyproject.toml index e59e31b5..bf918256 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "empowerplan" -version = "0.1.0" +version = "1.0.0" description = "EmPowerPlan" authors = [ "Hendrik Huyskens ",