Skip to content

Commit

Permalink
Merge pull request #394 from Whist-Team/Segelzwerg-patch-1
Browse files Browse the repository at this point in the history
PATCH RELEASE 0.9.2
  • Loading branch information
Segelzwerg authored Mar 30, 2024
2 parents 90a4e44 + 1e4a691 commit 553f7a8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]
name = "whist-core"
# remember to also update the version in __init__.py!
version = "0.9.1"
# 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"]
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions whist_core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"""
import os

# remember to also update the version in pyproject.toml!
__version__ = '0.9.1'
# remember to also update the version in pyproject.toml and docs/source/conf.py!
__version__ = '0.9.2'

ALGORITHM = os.getenv('ALGORITHM', 'HS256')
SECRET_KEY = os.getenv('SECRET_KEY', 'geheim')

0 comments on commit 553f7a8

Please sign in to comment.