From b470665b7181c8d25231097208601c5223d14e68 Mon Sep 17 00:00:00 2001 From: Hendrik Huyskens Date: Thu, 14 Nov 2024 09:28:40 +0100 Subject: [PATCH 1/2] Add captain-definition file --- captain-definition | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 captain-definition diff --git a/captain-definition b/captain-definition new file mode 100644 index 00000000..bc83868f --- /dev/null +++ b/captain-definition @@ -0,0 +1,4 @@ +{ + "schemaVersion": 2, + "dockerfilePath": "./compose/production/django/Dockerfile" +} From 422e4e6c97e291eebcf843f057b814d927130ef4 Mon Sep 17 00:00:00 2001 From: Hendrik Huyskens Date: Thu, 14 Nov 2024 09:30:45 +0100 Subject: [PATCH 2/2] Release v1.1.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 cf5ee77e..eb1797a1 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.1.0] - 2024-11-14 ### Added - markdown rendering - link to changelog in docs panel diff --git a/digiplan/__init__.py b/digiplan/__init__.py index ab8b1e66..4d8eca9b 100644 --- a/digiplan/__init__.py +++ b/digiplan/__init__.py @@ -1,4 +1,4 @@ """Digiplan init - holds current version.""" -__version__ = "1.0.0" +__version__ = "1.1.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 f0ed9b7d..a1b7eb3e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "empowerplan" -version = "1.0.0" +version = "1.1.0" description = "EmPowerPlan" authors = [ "Hendrik Huyskens ",