diff --git a/docs/development/changelog.rst b/docs/development/changelog.rst index 643473f..532dbb1 100644 --- a/docs/development/changelog.rst +++ b/docs/development/changelog.rst @@ -6,10 +6,20 @@ 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 adheres to [Calendar Versioning](https://calver.org/). +[2023.09.1] 2023-09-05 +----------------------- + +Fixed +^^^^^ + +- Fixed package number. +- Changelog layout. + [2023.09.0] 2023-09-05 ----------------------- Fixed +^^^^^ - Fixed package dependencies. @@ -17,6 +27,6 @@ Fixed ---------------------- Added ------ +^^^^^ - Initial release. diff --git a/src/basd/utils/basd_version.py b/src/basd/utils/basd_version.py index b268879..41df8a9 100644 --- a/src/basd/utils/basd_version.py +++ b/src/basd/utils/basd_version.py @@ -33,6 +33,6 @@ """Defines the BaSD version number""" -_version = "2023.08.0" #: BaSD version number: YYYY.MM.PATCH +_version = "2023.09.1" #: BaSD version number: YYYY.MM.PATCH __version__ = _version