Skip to content

Commit

Permalink
UPDATE: bump to 0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
iTitus committed Jul 25, 2023
1 parent 429aaf5 commit efd81f3
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 63 deletions.
88 changes: 29 additions & 59 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 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.0"
version = "0.9.1"
description = "Whist rules implementation"
authors = ["Whist-Team"]
license = "MIT"
Expand All @@ -19,8 +19,8 @@ classifiers = [

[tool.poetry.dependencies]
python = "^3.9"
pydantic = ">=1.10,<3.0"
deprecation = "^2.1.0"
pydantic = "^2.0"
deprecation = "^2.1"

[tool.poetry.dev-dependencies]
pytest = "^7.4"
Expand Down
2 changes: 1 addition & 1 deletion whist_core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import os

# remember to also update the version in pyproject.toml!
__version__ = '0.9.0'
__version__ = '0.9.1'

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

0 comments on commit efd81f3

Please sign in to comment.