Compare commits

...

2 Commits
v0.1.5 ... main

Author SHA1 Message Date
ecc414558a 🤖 Bumped version to 0.1.6
All checks were successful
Package Python / Package-Python-And-Publish (push) Successful in 25s
Run Python tests (through Pytest) / Test (push) Successful in 28s
Verify Python project can be installed, loaded and have version checked / Test (push) Successful in 25s
This commit was automatically generated by [a script](https://gitfub.space/Jmaa/repo-manager)
2025-07-16 12:53:41 +02:00
3b16f60ab0 Added PRE_ORDER
All checks were successful
Run Python tests (through Pytest) / Test (push) Successful in 28s
Verify Python project can be installed, loaded and have version checked / Test (push) Successful in 26s
2025-07-15 17:07:37 +02:00
2 changed files with 2 additions and 1 deletions

View File

@ -1 +1 @@
__version__ = '0.1.5' __version__ = '0.1.6'

View File

@ -40,6 +40,7 @@ class StoreOfferProperty(enum.Enum):
AUCTION = enum.auto() AUCTION = enum.auto()
SOLD_OUT = enum.auto() SOLD_OUT = enum.auto()
DISCOUNT = enum.auto() DISCOUNT = enum.auto()
PRE_ORDER = enum.auto()
@dataclasses.dataclass(frozen=True, order=True, slots=True) @dataclasses.dataclass(frozen=True, order=True, slots=True)