From b95b4665f0fe20e47cbb326aeda1f62af3bae02d Mon Sep 17 00:00:00 2001 From: vermeul <swen@ethz.ch> Date: Wed, 2 Nov 2022 17:46:03 +0100 Subject: [PATCH] bump version to 1.34.1 --- pybis/src/python/CHANGELOG.md | 4 ++++ pybis/src/python/pybis/__init__.py | 2 +- pybis/src/python/setup.cfg | 2 +- pybis/src/python/setup.py | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/pybis/src/python/CHANGELOG.md b/pybis/src/python/CHANGELOG.md index 52955a469bc..64cd4bbfa26 100644 --- a/pybis/src/python/CHANGELOG.md +++ b/pybis/src/python/CHANGELOG.md @@ -1,3 +1,7 @@ +## Changes with pybis-1.34.1 + +- better handling of configuration + ## Changes with pybis-1.34.0 - better error handling when connecting to openBIS server diff --git a/pybis/src/python/pybis/__init__.py b/pybis/src/python/pybis/__init__.py index e4897d0efc0..f2c355f94c2 100644 --- a/pybis/src/python/pybis/__init__.py +++ b/pybis/src/python/pybis/__init__.py @@ -1,7 +1,7 @@ name = "pybis" __author__ = "Swen Vermeul • ID SIS • ETH Zürich" __email__ = "swen@ethz.ch" -__version__ = "1.34.0" +__version__ = "1.34.1" from . import pybis from .pybis import DataSet diff --git a/pybis/src/python/setup.cfg b/pybis/src/python/setup.cfg index cf9c067a767..dbd9c33c4f5 100644 --- a/pybis/src/python/setup.cfg +++ b/pybis/src/python/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = PyBIS -version = 1.34.0 +version = 1.34.1 author = Swen Vermeul • ID SIS • ETH Zürich author_email = swen@ethz.ch license = Apache Software License Version 2.0 diff --git a/pybis/src/python/setup.py b/pybis/src/python/setup.py index 24bddf976af..7229f52e55d 100644 --- a/pybis/src/python/setup.py +++ b/pybis/src/python/setup.py @@ -13,7 +13,7 @@ with open("README.md", "r", encoding="utf-8") as fh: setup( name="PyBIS", - version="1.34.0", + version="1.34.1", author="Swen Vermeul • ID SIS • ETH Zürich", author_email="swen@ethz.ch", description="openBIS connection and interaction, optimized for using with Jupyter", -- GitLab