Skip to content

Commit ee3840d

Browse files
authored
Prepare for Yama release (#83)
1 parent 60ac879 commit ee3840d

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
# v.2.0.1 (Feb 2025)
1+
# v.2.0.2 (May 2025)
2+
- Add new boss metric `Yama` `(yama)`
3+
4+
5+
# v.2.0.2 (Feb 2025)
26
- Add new boss metric `Royal Titans` `(the_royal_titans)`
37

48
# v2.0 (Jan 2025)

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.1"
3+
version = "2.0.2"
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.1"
35+
__version__: Final[str] = "2.0.2"
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
@@ -191,6 +191,7 @@ class Metric(BaseEnum):
191191
Vetion = "vetion"
192192
Vorkath = "vorkath"
193193
Wintertodt = "wintertodt"
194+
Yama = "yama"
194195
Zalcano = "zalcano"
195196
Zulrah = "zulrah"
196197

@@ -319,6 +320,7 @@ class Metric(BaseEnum):
319320
Metric.Vetion,
320321
Metric.Vorkath,
321322
Metric.Wintertodt,
323+
Metric.Yama,
322324
Metric.Zalcano,
323325
Metric.Zulrah,
324326
}

0 commit comments

Comments
 (0)