From c6800e072971a34e66597e20c23b1d9b9cc56aaf Mon Sep 17 00:00:00 2001
From: vermeul <swen@ethz.ch>
Date: Mon, 8 Aug 2022 17:47:58 +0200
Subject: [PATCH] bump version to 1.33.0

---
 pybis/src/python/CHANGELOG.md      | 7 ++++++-
 pybis/src/python/pybis/__init__.py | 2 +-
 pybis/src/python/setup.py          | 2 +-
 3 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/pybis/src/python/CHANGELOG.md b/pybis/src/python/CHANGELOG.md
index 8ad1b6e1b11..ae446bc6e98 100644
--- a/pybis/src/python/CHANGELOG.md
+++ b/pybis/src/python/CHANGELOG.md
@@ -1,7 +1,12 @@
+## Changes with pybis-1.33.0
+
+- add support for personal access tokens (PAT)
+- refactor existing pyBIS code
+
 ## Changes with pybis-1.32.1
 
 - fixing the issue with incorrectly named reference to DataSetKind.PHYSICAL
- 
+
 ## Changes with pybis-1.32.0
 
 - throw error when invalid token is assigned
diff --git a/pybis/src/python/pybis/__init__.py b/pybis/src/python/pybis/__init__.py
index 1b966b2dce9..12fc0c1b7c7 100644
--- a/pybis/src/python/pybis/__init__.py
+++ b/pybis/src/python/pybis/__init__.py
@@ -1,7 +1,7 @@
 name = "pybis"
 __author__ = "Swen Vermeul"
 __email__ = "swen@ethz.ch"
-__version__ = "1.32.1"
+__version__ = "1.33.0"
 
 from . import pybis
 from .pybis import DataSet
diff --git a/pybis/src/python/setup.py b/pybis/src/python/setup.py
index 7a4d25f48e6..23d7bab0c45 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.32.1",
+    version="1.33.0",
     author="Swen Vermeul • ID SIS • ETH Zürich",
     author_email="swen@ethz.ch",
     description="openBIS connection and interaction, optimized for using with Jupyter",
-- 
GitLab