Skip to content

Commit 60ac879

Browse files
authored
Add The Royal Titans metric (#80)
1 parent 9705857 commit 60ac879

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# v.2.0.1 (Feb 2025)
2+
- Add new boss metric `Royal Titans` `(the_royal_titans)`
3+
14
# v2.0 (Jan 2025)
25

36
# Breaking

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "wom.py"
3-
version = "2.0.0"
3+
version = "2.0.1"
44
description = "An asynchronous wrapper for the Wise Old Man API."
55
authors = ["Jonxslays"]
66
license = "MIT"

wom/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
from typing import Final
3333

3434
__packagename__: Final[str] = "wom.py"
35-
__version__: Final[str] = "2.0.0"
35+
__version__: Final[str] = "2.0.1"
3636
__author__: Final[str] = "Jonxslays"
3737
__copyright__: Final[str] = "2023-present Jonxslays"
3838
__description__: Final[str] = "An asynchronous wrapper for the Wise Old Man API."

wom/enums.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,7 @@ class Metric(BaseEnum):
178178
TheCorruptedGauntlet = "the_corrupted_gauntlet"
179179
TheLeviathan = "the_leviathan"
180180
TheWhisperer = "the_whisperer"
181+
TheRoyalTitans = "the_royal_titans"
181182
TheatreOfBlood = "theatre_of_blood"
182183
TheatreOfBloodHard = "theatre_of_blood_hard_mode"
183184
ThermonuclearSmokeDevil = "thermonuclear_smoke_devil"
@@ -305,6 +306,7 @@ class Metric(BaseEnum):
305306
Metric.TheCorruptedGauntlet,
306307
Metric.TheLeviathan,
307308
Metric.TheWhisperer,
309+
Metric.TheRoyalTitans,
308310
Metric.TheatreOfBlood,
309311
Metric.TheatreOfBloodHard,
310312
Metric.ThermonuclearSmokeDevil,

0 commit comments

Comments
 (0)