Skip to content

Commit

Permalink
Add new bosses (#78)
Browse files Browse the repository at this point in the history
* 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 <51417989+Jonxslays@users.noreply.github.com>
  • Loading branch information
joelhalen and Jonxslays committed Sep 26, 2024
1 parent 3b7cd0e commit 946ce1a
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# v1.0.1 (Sep 2024)

## Additions

- Added two new boss metrics `Amoxliatl` and `Hueycoatl`.

---

# v1.0.0 (Sep 2024)

Stable!
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 = "1.0.0"
version = "1.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] = "1.0.0"
__version__: Final[str] = "1.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
4 changes: 4 additions & 0 deletions wom/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ class Metric(BaseEnum):
# Bosses
AbyssalSire = "abyssal_sire"
AlchemicalHydra = "alchemical_hydra"
Amoxliatl = "amoxliatl"
Araxxor = "araxxor"
Artio = "artio"
BarrowsChests = "barrows_chests"
Expand All @@ -152,6 +153,7 @@ class Metric(BaseEnum):
GiantMole = "giant_mole"
GrotesqueGuardians = "grotesque_guardians"
Hespori = "hespori"
Hueycoatl = "the_hueycoatl"
KalphiteQueen = "kalphite_queen"
KingBlackDragon = "king_black_dragon"
Kraken = "kraken"
Expand Down Expand Up @@ -253,6 +255,7 @@ class Metric(BaseEnum):
{
Metric.AbyssalSire,
Metric.AlchemicalHydra,
Metric.Amoxliatl,
Metric.Araxxor,
Metric.Artio,
Metric.BarrowsChests,
Expand All @@ -276,6 +279,7 @@ class Metric(BaseEnum):
Metric.GiantMole,
Metric.GrotesqueGuardians,
Metric.Hespori,
Metric.Hueycoatl,
Metric.KalphiteQueen,
Metric.KingBlackDragon,
Metric.Kraken,
Expand Down

0 comments on commit 946ce1a

Please sign in to comment.