Skip to content

Commit 1571bd7

Browse files
authored
Merge pull request #123 from KSneijders/dev
v0.7.3
2 parents 218fb06 + 981aca7 commit 1571bd7

4 files changed

Lines changed: 8 additions & 4 deletions

File tree

42.3 KB
Binary file not shown.
47.5 KB
Binary file not shown.

AoE2ScenarioParser/objects/support/xs_check.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919

2020
class XsCheck:
21-
version: Tuple[int, int, int] = (0, 2, 18)
21+
version: Tuple[int, int, int] = (0, 2, 21)
2222

2323
def __init__(self, uuid: UUID):
2424
self._uuid: UUID = uuid
@@ -165,7 +165,7 @@ def is_supported_xs_check_binary(self) -> bool:
165165

166166
version_tuple = self.get_version()
167167

168-
if (0, 1, 2) <= version_tuple <= (0, 2, 18):
168+
if (0, 1, 2) <= version_tuple <= (0, 2, 21):
169169
return True
170170

171171
return False

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
---
99

10-
## 0.8.0 - Unreleased
10+
## 0.7.3 - 2026-April-17
1111

12-
# Changes
12+
### Adds
13+
14+
- Support for the Xs-Check `v0.2.21` — View the `v0.2.21` release here: https://github.com/Divy1211/xs-check/releases/tag/v0.2.21
15+
16+
### Changes
1317

1418
- Removes `DE` variants from managers.
1519
- Unifies all managers and their DE subclasses. This was once for potentially allowing pre-DE scenario management,

0 commit comments

Comments
 (0)