Skip to content

Commit 946ce1a

Browse files
joelhalenJonxslays
andauthored
Add new bosses (#78)
* Add new bosses New bosses exist in the WiseOldMan's API responses for Snapshots; these changes fix the errors presented searching for a player currently * Update changelog and bump project version --------- Co-authored-by: Jonxslays <[email protected]>
1 parent 3b7cd0e commit 946ce1a

File tree

4 files changed

+14
-2
lines changed

4 files changed

+14
-2
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# v1.0.1 (Sep 2024)
2+
3+
## Additions
4+
5+
- Added two new boss metrics `Amoxliatl` and `Hueycoatl`.
6+
7+
---
8+
19
# v1.0.0 (Sep 2024)
210

311
Stable!

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 = "1.0.0"
3+
version = "1.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] = "1.0.0"
35+
__version__: Final[str] = "1.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: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ class Metric(BaseEnum):
129129
# Bosses
130130
AbyssalSire = "abyssal_sire"
131131
AlchemicalHydra = "alchemical_hydra"
132+
Amoxliatl = "amoxliatl"
132133
Araxxor = "araxxor"
133134
Artio = "artio"
134135
BarrowsChests = "barrows_chests"
@@ -152,6 +153,7 @@ class Metric(BaseEnum):
152153
GiantMole = "giant_mole"
153154
GrotesqueGuardians = "grotesque_guardians"
154155
Hespori = "hespori"
156+
Hueycoatl = "the_hueycoatl"
155157
KalphiteQueen = "kalphite_queen"
156158
KingBlackDragon = "king_black_dragon"
157159
Kraken = "kraken"
@@ -253,6 +255,7 @@ class Metric(BaseEnum):
253255
{
254256
Metric.AbyssalSire,
255257
Metric.AlchemicalHydra,
258+
Metric.Amoxliatl,
256259
Metric.Araxxor,
257260
Metric.Artio,
258261
Metric.BarrowsChests,
@@ -276,6 +279,7 @@ class Metric(BaseEnum):
276279
Metric.GiantMole,
277280
Metric.GrotesqueGuardians,
278281
Metric.Hespori,
282+
Metric.Hueycoatl,
279283
Metric.KalphiteQueen,
280284
Metric.KingBlackDragon,
281285
Metric.Kraken,

0 commit comments

Comments
 (0)