Skip to content

Commit

Permalink
Version 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AussieSeaweed committed Dec 4, 2023
1 parent 04f1243 commit ed716f4
Show file tree
Hide file tree
Showing 12 changed files with 752 additions and 797 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ Changelog

All notable changes to this project will be documented in this file.

Version 0.3.1 (December 4, 2023)
-------------------------------

**Added**

- Allow state configuration to be saved.

Version 0.3.0 (October 7, 2023)
-------------------------------

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Research Group. PokerKit supports an extensive array of poker variants and it
provides a flexible architecture for users to define their custom games. These
facilities are exposed via an intuitive unified high-level programmatic API. The
library can be used in a variety of use cases, from poker AI development, tool
creation, to online poker casino implementation. PokerKits reliability has been
creation, to online poker casino implementation. PokerKit's reliability has been
established through static type checking, extensive doctests, and unit tests,
achieving 99% code coverage.

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
project = 'PokerKit'
copyright = '2023, University of Toronto Computer Poker Research Group'
author = 'University of Toronto Computer Poker Research Group'
release = '0.3.0'
release = '0.3.1'

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
28 changes: 22 additions & 6 deletions pokerkit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,16 @@
'CombinationHand',
'CompletionBettingOrRaisingTo',
'Deck',
'DeuceToSevenLowball',
'DeuceToSevenLowballMixin',
'Draw',
'EightOrBetterLookup',
'EightOrBetterLowHand',
'Entry',
'filter_none',
'FixedLimitBadugi',
'FixedLimitDeuceToSevenLowballTripleDraw',
'FixedLimitOmahaHoldemHighLowSplitEightOrBetter',
'FixedLimitPokerMixin',
'FixedLimitRazz',
'FixedLimitSevenCardStud',
'FixedLimitSevenCardStudHighLowSplitEightOrBetter',
Expand All @@ -40,6 +42,7 @@
'GreekHoldemHand',
'Hand',
'HandKilling',
'Holdem',
'HoleBoardCombinationHand',
'HoleCardsShowingOrMucking',
'HoleDealing',
Expand All @@ -50,16 +53,18 @@
'max_or_none',
'min_or_none',
'NoLimitDeuceToSevenLowballSingleDraw',
'NoLimitPokerMixin',
'NoLimitShortDeckHoldem',
'NoLimitTexasHoldem',
'OmahaEightOrBetterLowHand',
'OmahaHoldem',
'OmahaHoldemHand',
'OmahaHoldemMixin',
'Opening',
'Operation',
'Poker',
'Pot',
'PotLimitOmahaHoldem',
'PotLimitPokerMixin',
'Rank',
'RankOrder',
'RegularLookup',
Expand All @@ -68,6 +73,7 @@
'ShortDeckHoldemHand',
'ShortDeckHoldemLookup',
'shuffled',
'SingleDraw',
'StandardHand',
'StandardHighHand',
'StandardLookup',
Expand All @@ -76,27 +82,37 @@
'State',
'Street',
'Suit',
'TexasHoldem',
'TexasHoldemMixin',
'TripleDraw',
'UnfixedLimitHoldem',
'ValuesLike',
)

from pokerkit.games import (
DeuceToSevenLowball,
DeuceToSevenLowballMixin,
Draw,
FixedLimitBadugi,
FixedLimitDeuceToSevenLowballTripleDraw,
FixedLimitOmahaHoldemHighLowSplitEightOrBetter,
FixedLimitPokerMixin,
FixedLimitRazz,
FixedLimitSevenCardStud,
FixedLimitSevenCardStudHighLowSplitEightOrBetter,
FixedLimitTexasHoldem,
Holdem,
NoLimitDeuceToSevenLowballSingleDraw,
NoLimitPokerMixin,
NoLimitShortDeckHoldem,
NoLimitTexasHoldem,
OmahaHoldem,
OmahaHoldemMixin,
Poker,
PotLimitOmahaHoldem,
PotLimitPokerMixin,
SevenCardStud,
TexasHoldem,
SingleDraw,
TexasHoldemMixin,
TripleDraw,
UnfixedLimitHoldem,
)
from pokerkit.hands import (
BadugiHand,
Expand Down
Loading

0 comments on commit ed716f4

Please sign in to comment.