From d0f2c792f7a0aa090160e9d85a549a40d1c73eab Mon Sep 17 00:00:00 2001
From: alaskowski <alaskowski@ethz.ch>
Date: Wed, 9 Aug 2023 11:24:54 +0200
Subject: [PATCH] SSDM-13838: obis-0.4.3rc1

---
 app-openbis-command-line/src/python/CHANGELOG.md     | 5 +++++
 app-openbis-command-line/src/python/obis/__init__.py | 2 +-
 app-openbis-command-line/src/python/setup.py         | 4 ++--
 3 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/app-openbis-command-line/src/python/CHANGELOG.md b/app-openbis-command-line/src/python/CHANGELOG.md
index fd5eb265bfa..e73b41de9bd 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 abd8a4890fa..7ae9551f179 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 e6b3c06626f..e7f10e0e986 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",
-- 
GitLab