From 2db88c321efc67a4524c9500024ee15fe47495f3 Mon Sep 17 00:00:00 2001
From: alaskowski <alaskowski@ethz.ch>
Date: Tue, 21 Mar 2023 16:20:46 +0100
Subject: [PATCH] SSDM-13462: PyBIS-1.35.4rc1

---
 api-openbis-python3-pybis/src/python/CHANGELOG.md      | 4 ++++
 api-openbis-python3-pybis/src/python/README.md         | 2 +-
 api-openbis-python3-pybis/src/python/pybis/__init__.py | 2 +-
 api-openbis-python3-pybis/src/python/setup.cfg         | 2 +-
 api-openbis-python3-pybis/src/python/setup.py          | 2 +-
 5 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/api-openbis-python3-pybis/src/python/CHANGELOG.md b/api-openbis-python3-pybis/src/python/CHANGELOG.md
index 929e4f1597e..a39d46450b1 100644
--- a/api-openbis-python3-pybis/src/python/CHANGELOG.md
+++ b/api-openbis-python3-pybis/src/python/CHANGELOG.md
@@ -1,3 +1,7 @@
+## Changes with pybis-1.35.4
+
+- Changes to internal implementation of data set download/upload to use OpenBIS V3 API 
+
 ## Changes with pybis-1.35.3
 
 - Modified set_token() method to accept PersonalAccessToken object
diff --git a/api-openbis-python3-pybis/src/python/README.md b/api-openbis-python3-pybis/src/python/README.md
index b9a7e453aaa..0100f86d3ec 100644
--- a/api-openbis-python3-pybis/src/python/README.md
+++ b/api-openbis-python3-pybis/src/python/README.md
@@ -139,7 +139,7 @@ You may also use permId directly:
 
 ```python
 pat = o.get_or_create_personal_access_token(sessionName="Project A")
-o.set_token(pat.permId, save_token=True)
+o.set_token(pat.permId, save_token=True) 
 ```
 
 **Note:** If there is an existing PAT with the same _sessionName_ which is still valid and the validity is within the warning period (defined by the server), then this existing PAT is returned instead. However, you can enforce creating a new PAT by passing the argument `force=True`.
diff --git a/api-openbis-python3-pybis/src/python/pybis/__init__.py b/api-openbis-python3-pybis/src/python/pybis/__init__.py
index 707a73639de..3956728e2d3 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.3"
+__version__ = "1.35.4rc1"
 
 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 27ea68ad824..0ed57517007 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.3
+version = 1.35.4rc1
 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 a1f1caea1c2..13bf0a77a67 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.3",
+    version="1.35.4rc1",
     author="ID SIS • ETH Zürich",
     author_email="openbis-support@id.ethz.ch",
     description="openBIS connection and interaction, optimized for using with Jupyter",
-- 
GitLab