From 5d311c184fff1292c2a4ec15a800d445aeaa553f Mon Sep 17 00:00:00 2001 From: Hendrik Huyskens Date: Fri, 11 Oct 2024 12:29:45 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.13.0=20=E2=86=92=200.14.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.toml | 2 +- CHANGELOG.md | 2 +- sedos_dashboard/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.toml b/.bumpversion.toml index 71645b5..100a5fb 100644 --- a/.bumpversion.toml +++ b/.bumpversion.toml @@ -1,5 +1,5 @@ [tool.bumpversion] -current_version = "0.13.0" +current_version = "0.14.0" parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)" serialize = ["{major}.{minor}.{patch}"] search = "{current_version}" diff --git a/CHANGELOG.md b/CHANGELOG.md index 3dee60b..cc74998 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] +## [0.14.0] - 2024-10-11 ### Added - structure for reference ES - home button on navigation bar diff --git a/sedos_dashboard/__init__.py b/sedos_dashboard/__init__.py index d9f2670..304cff2 100644 --- a/sedos_dashboard/__init__.py +++ b/sedos_dashboard/__init__.py @@ -1,2 +1,2 @@ -__version__ = "0.13.0" +__version__ = "0.14.0" __version_info__ = tuple(int(num) if num.isdigit() else num for num in __version__.replace("-", ".", 1).split("."))