diff --git a/CHANGELOG.md b/CHANGELOG.md index 80711d04..084cf4bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ +## v3.0.8 (2024-03-20) + +### Other + +* Fix auth for inst groups not in our infos ([#81](https://github.com/WIPACrepo/mou-dashboard/issues/81)) ([`0a42106`](https://github.com/WIPACrepo/mou-dashboard/commit/0a42106647a6d0ec03e9d637832de5a97257d12e)) + ## v3.0.7 (2023-11-17) ### Other diff --git a/rest_server/__init__.py b/rest_server/__init__.py index 3c9a7ad3..ec3c19c8 100644 --- a/rest_server/__init__.py +++ b/rest_server/__init__.py @@ -7,7 +7,7 @@ # is zero for an official release, positive for a development branch, # or negative for a release candidate or beta (after the base version # number has been incremented) -__version__ = "3.0.7" +__version__ = "3.0.8" version_info = ( int(__version__.split(".")[0]), int(__version__.split(".")[1]), diff --git a/universal_utils/__init__.py b/universal_utils/__init__.py index 22070c9b..0439eb47 100644 --- a/universal_utils/__init__.py +++ b/universal_utils/__init__.py @@ -8,7 +8,7 @@ # is zero for an official release, positive for a development branch, # or negative for a release candidate or beta (after the base version # number has been incremented) -__version__ = "3.0.7" +__version__ = "3.0.8" version_info = ( int(__version__.split(".")[0]), int(__version__.split(".")[1]), diff --git a/web_app/__init__.py b/web_app/__init__.py index 3c9a7ad3..ec3c19c8 100644 --- a/web_app/__init__.py +++ b/web_app/__init__.py @@ -7,7 +7,7 @@ # is zero for an official release, positive for a development branch, # or negative for a release candidate or beta (after the base version # number has been incremented) -__version__ = "3.0.7" +__version__ = "3.0.8" version_info = ( int(__version__.split(".")[0]), int(__version__.split(".")[1]),