diff --git a/CHANGELOG.md b/CHANGELOG.md index 546582b7..0618d1ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,17 @@ +## v3.0.0 (2023-09-01) + +### Breaking + +* Co-authored-by: github-actions ([`97e4e76`](https://github.com/WIPACrepo/mou-dashboard/commit/97e4e76f7ca57ff222b65a9e114ca856d7126379)) + +### Other + +* Additional Test Data ([#70](https://github.com/WIPACrepo/mou-dashboard/issues/70)) ([`0aae3ab`](https://github.com/WIPACrepo/mou-dashboard/commit/0aae3ab8536d4cf8d948efd4eb420eb3e57dd519)) +* CI Updates: Packages & Data ([#69](https://github.com/WIPACrepo/mou-dashboard/issues/69)) ([`4daa2bf`](https://github.com/WIPACrepo/mou-dashboard/commit/4daa2bf99320d975508f04f042e4032bd1a2e8f6)) + ## v2.2.0 (2022-10-24) ### Feature * OIDC REST Tokens ([#67](https://github.com/WIPACrepo/mou-dashboard/issues/67)) ([`2df6142`](https://github.com/WIPACrepo/mou-dashboard/commit/2df61421c4ab86ddce9d0744af0fbc9aab584229)) diff --git a/rest_server/__init__.py b/rest_server/__init__.py index 44e2c3de..3229d945 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__ = "2.2.0" +__version__ = "3.0.0" version_info = ( int(__version__.split(".")[0]), int(__version__.split(".")[1]), diff --git a/universal_utils/__init__.py b/universal_utils/__init__.py index a334aca5..6ced81c6 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__ = "2.2.0" +__version__ = "3.0.0" version_info = ( int(__version__.split(".")[0]), int(__version__.split(".")[1]), diff --git a/web_app/__init__.py b/web_app/__init__.py index 44e2c3de..3229d945 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__ = "2.2.0" +__version__ = "3.0.0" version_info = ( int(__version__.split(".")[0]), int(__version__.split(".")[1]),