Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add The Royal Titans metric #80

Merged
merged 1 commit into from
Feb 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# v.2.0.1 (Feb 2025)
- Add new boss metric `Royal Titans` `(the_royal_titans)`

# v2.0 (Jan 2025)

# Breaking
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "wom.py"
version = "2.0.0"
version = "2.0.1"
description = "An asynchronous wrapper for the Wise Old Man API."
authors = ["Jonxslays"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion wom/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
from typing import Final

__packagename__: Final[str] = "wom.py"
__version__: Final[str] = "2.0.0"
__version__: Final[str] = "2.0.1"
__author__: Final[str] = "Jonxslays"
__copyright__: Final[str] = "2023-present Jonxslays"
__description__: Final[str] = "An asynchronous wrapper for the Wise Old Man API."
Expand Down
2 changes: 2 additions & 0 deletions wom/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,7 @@ class Metric(BaseEnum):
TheCorruptedGauntlet = "the_corrupted_gauntlet"
TheLeviathan = "the_leviathan"
TheWhisperer = "the_whisperer"
TheRoyalTitans = "the_royal_titans"
TheatreOfBlood = "theatre_of_blood"
TheatreOfBloodHard = "theatre_of_blood_hard_mode"
ThermonuclearSmokeDevil = "thermonuclear_smoke_devil"
Expand Down Expand Up @@ -305,6 +306,7 @@ class Metric(BaseEnum):
Metric.TheCorruptedGauntlet,
Metric.TheLeviathan,
Metric.TheWhisperer,
Metric.TheRoyalTitans,
Metric.TheatreOfBlood,
Metric.TheatreOfBloodHard,
Metric.ThermonuclearSmokeDevil,
Expand Down