diff --git a/CHANGELOG.md b/CHANGELOG.md
index 19b6a1b6adee16f08541bb2977392c6c4d600b7e..616794d12aea9945dfbad3ee28f2b77e936a3ee9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,6 +9,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 
 ### Added ###
 
+### Changed ###
+
+* [#134](https://gitlab.com/linkahead/linkahead-pylib/-/issues/134)
+  Setting special attributes using add_property now updates the attribute
+  instead of adding a new property with the same name
+
+### Deprecated ###
+
+### Removed ###
+
+### Fixed ###
+
+### Security ###
+
+### Documentation ###
+
+## [0.17.0] - 2025-01-14 ##
+
+### Added ###
+
 * New setup extra `test` which installs the dependencies for testing.
 * The Container class has a new member function `filter_by_identity`
   which is based on `_filter_entity_list`.
@@ -19,12 +39,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 
 * Renamed the `filter` function of Container, ParentList and
   PropertyList to `filter_by_identity`.
-* [#134](https://gitlab.com/linkahead/linkahead-pylib/-/issues/134)
-  Setting special attributes using add_property now updates the attribute 
-  instead of adding a new property with the same name
 
 ### Deprecated ###
 
+* `ParentList.filter` and `PropertyList.filter` functions, use
+  `filter_by_identity` instead.
+
 ### Removed ###
 
 * Support for Python 3.8
@@ -47,10 +67,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 * [#127](https://gitlab.com/linkahead/linkahead-pylib/-/issues/127)
   pylinkahead.ini now supports None and tuples as values for the `timeout` keyword
 
-### Security ###
-
-### Documentation ###
-
 ## [0.16.0] - 2024-11-13 ##
 
 ### Added ###
diff --git a/CITATION.cff b/CITATION.cff
index 123289ca17e8b43446f8f368621debccd8c27469..bcecc2fdd962f4c581a2d53d5c1a324fb643a4a3 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 - Pylib
-version: 0.16.0
+version: 0.17.0
 doi: 10.3390/data4020083
-date-released: 2024-11-13
+date-released: 2025-01-14
diff --git a/README.md b/README.md
index 193cb8f0cff8ff5cee36a40a78e53f070527e2e0..d630e879e9ff4781bb79b193d0240ef11ae211d2 100644
--- a/README.md
+++ b/README.md
@@ -47,7 +47,7 @@ However, you can also create an issue for it.
 
 * Copyright (C) 2018 Research Group Biomedical Physics, Max Planck Institute
   for Dynamics and Self-Organization Göttingen.
-* Copyright (C) 2020-2022 Indiscale GmbH <info@indiscale.com>
+* Copyright (C) 2020-2025 Indiscale GmbH <info@indiscale.com>
 
 All files in this repository are licensed under a [GNU Affero General Public
 License](LICENCE.md) (version 3 or later).
diff --git a/setup.py b/setup.py
index 7a7bf9bdf4c01bd87681f232df44a3982381ac60..ab8555b858b0004b59e979ac2de7b2b8450073b1 100755
--- a/setup.py
+++ b/setup.py
@@ -48,7 +48,7 @@ from setuptools import find_packages, setup
 
 ISRELEASED = False
 MAJOR = 0
-MINOR = 16
+MINOR = 17
 MICRO = 1
 # Do not tag as pre-release until this commit
 # https://github.com/pypa/packaging/pull/515
diff --git a/src/doc/conf.py b/src/doc/conf.py
index 80d5e8a25abcbb1a3b72b429a07b628341875805..ce1aa8ff92d18d1ccd0bd408b1ce9e3523d03940 100644
--- a/src/doc/conf.py
+++ b/src/doc/conf.py
@@ -29,10 +29,10 @@ copyright = '2024, IndiScale GmbH'
 author = 'Daniel Hornung'
 
 # The short X.Y version
-version = '0.16.1'
+version = '0.17.1'
 # The full version, including alpha/beta/rc tags
 # release = '0.5.2-rc2'
-release = '0.16.1-dev'
+release = '0.17.1-dev'
 
 
 # -- General configuration ---------------------------------------------------