diff --git a/api-openbis-python3-pybis/src/python/CHANGELOG.md b/api-openbis-python3-pybis/src/python/CHANGELOG.md index 169d3b7cd9a71adc2bd72ba61cf892e29f0f2a27..929e4f1597ee1f2883c6ed08fe02baf2e68cc119 100644 --- a/api-openbis-python3-pybis/src/python/CHANGELOG.md +++ b/api-openbis-python3-pybis/src/python/CHANGELOG.md @@ -1,3 +1,8 @@ +## Changes with pybis-1.35.3 + +- Modified set_token() method to accept PersonalAccessToken object +- Minor code refactoring + ## Changes with pybis-1.35.2 - Added rising an error when re-login fails diff --git a/api-openbis-python3-pybis/src/python/pybis/__init__.py b/api-openbis-python3-pybis/src/python/pybis/__init__.py index f7d3dd02b92a7a584255b244c26966c387b2cc6b..707a73639de3c3aadbc452bf4cb1de1de2fc419e 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.2" +__version__ = "1.35.3" 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 4ee391344f2da42efa919214ebd6c907f92da4ff..27ea68ad82436289e2aa1a7b432b05f3792064d8 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.2 +version = 1.35.3 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 3254325c722b739a47b7401c37bd9477fb16f365..a1f1caea1c21dfd6a822799e017b0e4718faf785 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.2", + version="1.35.3", author="ID SIS • ETH Zürich", author_email="openbis-support@id.ethz.ch", description="openBIS connection and interaction, optimized for using with Jupyter",