diff --git a/app-openbis-command-line/src/python/CHANGELOG.md b/app-openbis-command-line/src/python/CHANGELOG.md
index fd5eb265bfae4dd38f57ff8a2f83984e67c2e81a..e73b41de9bd49d56b8468fc7623ff351d4e8f245 100644
--- a/app-openbis-command-line/src/python/CHANGELOG.md
+++ b/app-openbis-command-line/src/python/CHANGELOG.md
@@ -1,3 +1,8 @@
+# New in version 0.4.3
+
+* Changed upload prints to be more readable
+* Changed pybis dependency to version == 1.36.1
+
 # New in version 0.4.2
 
 * Added filtering by object in object and data_set search commands
diff --git a/app-openbis-command-line/src/python/obis/__init__.py b/app-openbis-command-line/src/python/obis/__init__.py
index abd8a4890fa52459461d855954ec5ebd2b9eef24..7ae9551f179beaa393b1177bcdca1dd72fe77a34 100644
--- a/app-openbis-command-line/src/python/obis/__init__.py
+++ b/app-openbis-command-line/src/python/obis/__init__.py
@@ -14,6 +14,6 @@
 #
 __author__ = "ID SIS • ETH Zürich"
 __email__ = "openbis-support@id.ethz.ch"
-__version__ = "0.4.2"
+__version__ = "0.4.3rc1"
 
 from .dm import *
diff --git a/app-openbis-command-line/src/python/setup.py b/app-openbis-command-line/src/python/setup.py
index e6b3c06626f16cfd361977252b3fa16681624786..e7f10e0e986ca5bb87c898aa4495bda3bb0e4c4a 100644
--- a/app-openbis-command-line/src/python/setup.py
+++ b/app-openbis-command-line/src/python/setup.py
@@ -31,7 +31,7 @@ data_files = [
 
 setup(
     name="obis",
-    version="0.4.2",
+    version="0.4.3rc1",
     description="Local data management with assistance from OpenBIS.",
     long_description=long_description,
     long_description_content_type="text/markdown",
@@ -42,7 +42,7 @@ setup(
     packages=["obis", "obis.dm", "obis.dm.commands", "obis.scripts"],
     data_files=data_files,
     package_data={"obis": ["dm/git-annex-attributes"]},
-    install_requires=["pyOpenSSL", "pytest", "pybis==1.36.0", "click"],
+    install_requires=["pyOpenSSL", "pytest", "pybis==1.36.1rc2", "click"],
     entry_points={"console_scripts": ["obis=obis.scripts.cli:main"]},
     zip_safe=False,
     python_requires=">=3.3",