From 58f785e85a6efef4c5131e75c557cccdbdb70e6f Mon Sep 17 00:00:00 2001 From: streammachineio-org Date: Tue, 12 Jul 2022 13:12:21 +0000 Subject: [PATCH] chore(release): 3.0.0 # [3.0.0](https://github.com/strmprivacy/python-driver/compare/v2.0.0...v3.0.0) (2022-07-12) ### Features * **strm-1259:** update driver for keycloak auth ([#4](https://github.com/strmprivacy/python-driver/issues/4)) ([7930603](https://github.com/strmprivacy/python-driver/commit/79306034abf4f1fd3b7aee3d7e0d50df34a2f79d)) ### BREAKING CHANGES * **strm-1259:** authentication has changed --- CHANGELOG.md | 12 ++++++++++++ setup.py | 2 +- strmprivacy/driver/__init__.py | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 572f714..f757e7d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +# [3.0.0](https://github.com/strmprivacy/python-driver/compare/v2.0.0...v3.0.0) (2022-07-12) + + +### Features + +* **strm-1259:** update driver for keycloak auth ([#4](https://github.com/strmprivacy/python-driver/issues/4)) ([7930603](https://github.com/strmprivacy/python-driver/commit/79306034abf4f1fd3b7aee3d7e0d50df34a2f79d)) + + +### BREAKING CHANGES + +* **strm-1259:** authentication has changed + # [2.0.0](https://github.com/streammachineio/python-driver/compare/v1.0.0...v2.0.0) (2021-11-10) diff --git a/setup.py b/setup.py index d3fb8c3..b8256df 100644 --- a/setup.py +++ b/setup.py @@ -40,6 +40,6 @@ packages=find_namespace_packages(include=['strmprivacy.*']), namespace_packages=["strmprivacy"], setup_requires=[], - version='2.0.0', + version='3.0.0', zip_safe=False, ) diff --git a/strmprivacy/driver/__init__.py b/strmprivacy/driver/__init__.py index 7b3d9fd..1a73392 100644 --- a/strmprivacy/driver/__init__.py +++ b/strmprivacy/driver/__init__.py @@ -1,6 +1,6 @@ __author__ = """Stream Machine B.V.""" __email__ = 'apis@strmprivacy.io' -__version__ = '2.0.0' +__version__ = '3.0.0' from .client import StrmPrivacyClient from .domain.config import ClientConfig