diff --git a/api-openbis-python3-pybis/src/python/CHANGELOG.md b/api-openbis-python3-pybis/src/python/CHANGELOG.md
index ba0b76116abdd1e3c372ee5b2a5eebe13034f5c3..4034158f0780a883f3102600bce1942dd5a20b1d 100644
--- a/api-openbis-python3-pybis/src/python/CHANGELOG.md
+++ b/api-openbis-python3-pybis/src/python/CHANGELOG.md
@@ -1,3 +1,9 @@
+## Changes with pybis-1.35.5
+
+- Implementation of array-type properties handling
+- Fixed assignment of dynamic property plugins to property types 
+
+
 ## Changes with pybis-1.35.4
 
 - Changes to internal implementation of data set download/upload to use OpenBIS V3 API
diff --git a/api-openbis-python3-pybis/src/python/pybis/__init__.py b/api-openbis-python3-pybis/src/python/pybis/__init__.py
index 79e14c8a478d2c444491f8d783062c95c969336d..e10205534d05b969bd4bdda2010ecb7b9640a41f 100644
--- a/api-openbis-python3-pybis/src/python/pybis/__init__.py
+++ b/api-openbis-python3-pybis/src/python/pybis/__init__.py
@@ -15,7 +15,7 @@
 name = "pybis"
 __author__ = "ID SIS • ETH Zürich"
 __email__ = "openbis-support@id.ethz.ch"
-__version__ = "1.35.4"
+__version__ = "1.35.5rc1"
 
 from . import pybis
 from .pybis import DataSet
diff --git a/api-openbis-python3-pybis/src/python/setup.cfg b/api-openbis-python3-pybis/src/python/setup.cfg
index 0729d208f4d59edbb966a5fefe1a94168039d169..420b44512ee09003840c3699c520e5bd856dc924 100644
--- a/api-openbis-python3-pybis/src/python/setup.cfg
+++ b/api-openbis-python3-pybis/src/python/setup.cfg
@@ -1,6 +1,6 @@
 [metadata]
 name = PyBIS
-version = 1.35.4rc3
+version = 1.35.5rc1
 author = ID SIS • ETH Zürich
 author_email = openbis-support@id.ethz.ch
 license = Apache Software License Version 2.0
diff --git a/api-openbis-python3-pybis/src/python/setup.py b/api-openbis-python3-pybis/src/python/setup.py
index 1f08881df69b9dc1da97852ce3b3744cc2541171..4ee667f434e38f00214cac135d310ff9bd6c4cc6 100644
--- a/api-openbis-python3-pybis/src/python/setup.py
+++ b/api-openbis-python3-pybis/src/python/setup.py
@@ -26,7 +26,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
 
 setup(
     name="PyBIS",
-    version="1.35.4",
+    version="1.35.5rc1",
     author="ID SIS • ETH Zürich",
     author_email="openbis-support@id.ethz.ch",
     description="openBIS connection and interaction, optimized for using with Jupyter",