diff --git a/CHANGELOG.md b/CHANGELOG.md
index e5090e8922819f18776c577ba31fb4e05700e443..175dc1b2a8f1a9ff3258e7ef03d8bb0640357918 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,38 +8,56 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 
 ### Added ###
 
+### Changed ###
+
+### Deprecated ###
+
+### Removed ###
+
+### Fixed ###
+
+### Security ###
+
+### Documentation ###
+
+## [0.13.0] - 2025-01-16 ##
+
+### Added ###
+
 * Official support for Python 3.13
 
 ### Changed ###
 
-- Using the official name "LinkAhead" wherever possible without large effort. This includes the
-  following exposed names / features:
+- Using the official name "LinkAhead" wherever possible without large
+  effort. This includes the following exposed names / features:
   - `models.data_model.LINKAHEAD_INTERNAL_PROPERTIES`
   - `export_related.export` exports to `linkahead_data.xml` now.
 - Renamed (and added) installation "extra" options:
   - `h5` instead of `h5-crawler`
-  - `dev`, `doc`, `test` and `all` are new, they install the dependencies for developing, testing,
-    documentation and everything.
-- The `pandoc_header_tools.get_header()` parameter `add_header` has been renamed to `add_header_to_file`
-  to resolve a name collision.
-
-### Deprecated ###
+  - `dev`, `doc`, `test` and `all` are new, they install the
+    dependencies for developing, testing, documentation and
+    everything.
+- The `pandoc_header_tools.get_header()` parameter `add_header` has
+  been renamed to `add_header_to_file` to resolve a name collision.
 
 ### Removed ###
 
-- Bloxberg code snippets. These were just a proof of concept, untested and never used in production.
-- Labfolder converter. It was broken anyway, not used by anyone we know and there were no automated
-  tests.  For the time being, it lives on in the `f-labfolder-converter` branch, [issue 67](https://gitlab.com/linkahead/linkahead-advanced-user-tools/-/issues/67) is
-  there to coordinate resurrections efforts if someone needs it..
+- Bloxberg code snippets. These were just a proof of concept, untested
+  and never used in production.
+- Labfolder converter. It was broken anyway, not used by anyone we
+  know and there were no automated tests. For the time being, it lives
+  on in the `f-labfolder-converter` branch, [issue
+  67](https://gitlab.com/linkahead/linkahead-advanced-user-tools/-/issues/67)
+  is there to coordinate resurrections efforts if someone needs it..
 - Support for Python 3.8
 
 ### Fixed ###
 
-- Yaml data model parser adds data types of properties of record types and other attributes which fixes https://gitlab.indiscale.com/caosdb/customers/f-fit/management/-/issues/58
+- Yaml data model parser adds data types of properties of record types
+  and other attributes which fixes
+  https://gitlab.indiscale.com/caosdb/customers/f-fit/management/-/issues/58
 - `XLSXConverter` now checks path validity before parsing the worksheet.
 
-### Security ###
-
 ### Documentation ###
 
 * Added documentation of `caosadvancedtools.loadFiles` module.
diff --git a/CITATION.cff b/CITATION.cff
index c46285346bf68c52232e775a4fa7d57538748987..6e6852194dbe364453ab71dfddfdf9244fd50ee9 100644
--- a/CITATION.cff
+++ b/CITATION.cff
@@ -20,6 +20,6 @@ authors:
     given-names: Stefan
     orcid: https://orcid.org/0000-0001-7214-8125
 title: CaosDB - Advanced User Tools
-version: 0.12.0
+version: 0.13.0
 doi: 10.3390/data4020083
-date-released: 2024-07-31
\ No newline at end of file
+date-released: 2025-01-16
\ No newline at end of file
diff --git a/setup.py b/setup.py
index c7dd54a96bcfd3d0e96a4f50fc4811610923a6fd..aa8ced3dde24399ee4652d978f011c8c0ccc01ef 100755
--- a/setup.py
+++ b/setup.py
@@ -46,7 +46,7 @@ from setuptools import find_packages, setup
 ########################################################################
 
 MAJOR = 0
-MINOR = 12
+MINOR = 13
 MICRO = 1
 PRE = ""  # e.g. rc0, alpha.1, 0.beta-23
 ISRELEASED = False
diff --git a/src/doc/conf.py b/src/doc/conf.py
index e89756505f7480f97ae033c87c1ba4d4ca40d85f..b9453e0ac8afde0fbccc2f80b92dc6dcb7d3576f 100644
--- a/src/doc/conf.py
+++ b/src/doc/conf.py
@@ -23,13 +23,13 @@ import sphinx_rtd_theme
 # -- Project information -----------------------------------------------------
 
 project = 'caosadvancedtools'
-copyright = '2023, IndiScale GmbH'
+copyright = '2025, IndiScale GmbH'
 author = 'Daniel Hornung'
 
 # The short X.Y version
-version = '0.12.1'
+version = '0.13.1'
 # The full version, including alpha/beta/rc tags
-release = '0.12.1-dev'
+release = '0.13.1-dev'
 
 
 # -- General configuration ---------------------------------------------------