Skip to content

Commit 8ad83b6

Browse files
authored
Add varlamore metrics (#67)
1 parent 541a6a7 commit 8ad83b6

File tree

4 files changed

+17
-6
lines changed

4 files changed

+17
-6
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# v0.9.5 (Mar 2024)
2+
3+
## Additions
4+
5+
- Add varlamore metrics (ColosseumGlory, LunarChests, SolHeredit).
6+
7+
---
8+
19
# v0.9.4 (Mar 2024)
210

311
## Bugfixes

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 = "0.9.4"
3+
version = "0.9.5"
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] = "0.9.4"
35+
__version__: Final[str] = "0.9.5"
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: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -176,20 +176,21 @@ class Skills(Metric):
176176
class Activities(Metric):
177177
"""Activities from OSRS."""
178178

179-
LeaguePoints = "league_points"
180179
BountyHunterHunter = "bounty_hunter_hunter"
181180
BountyHunterRogue = "bounty_hunter_rogue"
182181
ClueScrollsAll = "clue_scrolls_all"
183182
ClueScrollsBeginner = "clue_scrolls_beginner"
184183
ClueScrollsEasy = "clue_scrolls_easy"
185-
ClueScrollsMedium = "clue_scrolls_medium"
186-
ClueScrollsHard = "clue_scrolls_hard"
187184
ClueScrollsElite = "clue_scrolls_elite"
185+
ClueScrollsHard = "clue_scrolls_hard"
188186
ClueScrollsMaster = "clue_scrolls_master"
187+
ClueScrollsMedium = "clue_scrolls_medium"
188+
ColosseumGlory = "colosseum_glory"
189+
GuardiansOfTheRift = "guardians_of_the_rift"
189190
LastManStanding = "last_man_standing"
191+
LeaguePoints = "league_points"
190192
PvpArena = "pvp_arena"
191193
SoulWarsZeal = "soul_wars_zeal"
192-
GuardiansOfTheRift = "guardians_of_the_rift"
193194

194195

195196
class Bosses(Metric):
@@ -224,6 +225,7 @@ class Bosses(Metric):
224225
Kraken = "kraken"
225226
Kreearra = "kreearra"
226227
KrilTsutsaroth = "kril_tsutsaroth"
228+
LunarChests = "lunar_chests"
227229
Mimic = "mimic"
228230
Nex = "nex"
229231
Nightmare = "nightmare"
@@ -234,6 +236,7 @@ class Bosses(Metric):
234236
Scorpia = "scorpia"
235237
Scurrius = "scurrius"
236238
Skotizo = "skotizo"
239+
SolHeredit = "sol_heredit"
237240
Spindel = "spindel"
238241
Tempoross = "tempoross"
239242
TheGauntlet = "the_gauntlet"

0 commit comments

Comments
 (0)