From ed53f8360f792830a90c6c164d70689b2b246086 Mon Sep 17 00:00:00 2001 From: Marcel <25705862+Segelzwerg@users.noreply.github.com> Date: Sat, 30 Mar 2024 20:13:39 +0100 Subject: [PATCH 1/5] Update pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 4657efdb..11261470 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "whist-core" # remember to also update the version in __init__.py! -version = "0.9.1" +version = "0.9.2" description = "Whist rules implementation" authors = ["Whist-Team"] license = "MIT" From 70ec36dc237087cf0d98b553e23c4ac77bd7b743 Mon Sep 17 00:00:00 2001 From: Marcel <25705862+Segelzwerg@users.noreply.github.com> Date: Sat, 30 Mar 2024 20:14:40 +0100 Subject: [PATCH 2/5] Update __init__.py --- whist_core/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/whist_core/__init__.py b/whist_core/__init__.py index cc1974fd..30185a56 100644 --- a/whist_core/__init__.py +++ b/whist_core/__init__.py @@ -4,7 +4,7 @@ import os # remember to also update the version in pyproject.toml! -__version__ = '0.9.1' +__version__ = '0.9.2' ALGORITHM = os.getenv('ALGORITHM', 'HS256') SECRET_KEY = os.getenv('SECRET_KEY', 'geheim') From 9d5578229e646ca3f7a64ffde1fbc12fe21925d3 Mon Sep 17 00:00:00 2001 From: Marcel <25705862+Segelzwerg@users.noreply.github.com> Date: Sat, 30 Mar 2024 20:18:36 +0100 Subject: [PATCH 3/5] Update conf.py --- docs/source/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 17f64801..3b0940a5 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -22,7 +22,7 @@ author = 'Whist Team' # The full version, including alpha/beta/rc tags -release = '0.0.1' +release = '0.9.2' # -- General configuration --------------------------------------------------- From db7687cdc671afe0ff510acf6e35d89f3799fba4 Mon Sep 17 00:00:00 2001 From: Marcel <25705862+Segelzwerg@users.noreply.github.com> Date: Sat, 30 Mar 2024 20:19:30 +0100 Subject: [PATCH 4/5] Update __init__.py --- whist_core/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/whist_core/__init__.py b/whist_core/__init__.py index 30185a56..3b84eb01 100644 --- a/whist_core/__init__.py +++ b/whist_core/__init__.py @@ -3,7 +3,7 @@ """ import os -# remember to also update the version in pyproject.toml! +# remember to also update the version in pyproject.toml and docs/source/conf.py! __version__ = '0.9.2' ALGORITHM = os.getenv('ALGORITHM', 'HS256') From 1e4a691745f728aa7bb602fa8938e1a7b683d909 Mon Sep 17 00:00:00 2001 From: Marcel <25705862+Segelzwerg@users.noreply.github.com> Date: Sat, 30 Mar 2024 20:20:00 +0100 Subject: [PATCH 5/5] Update pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 11261470..46dfb825 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "whist-core" -# remember to also update the version in __init__.py! +# remember to also update the version in __init__.py and docs/source/conf.py! version = "0.9.2" description = "Whist rules implementation" authors = ["Whist-Team"]