Skip to content

Commit b3c60f8

Browse files
Release v1.7.2
1 parent c97bdfc commit b3c60f8

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [1.7.2] - 2022-07-23
11+
1012
### Added
1113

12-
- Recommend users to update Mod Importer when it fails to run due to being outdated.
14+
- Recommend users to update Mod Importer when it fails to run due to being outdated.
1315

1416
## [1.7.1] - 2022-07-14
1517

@@ -364,7 +366,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
364366

365367
- Initial release.
366368

367-
[Unreleased]: https://github.com/nbusseneau/hephaistos/compare/v1.7.1...HEAD
369+
[Unreleased]: https://github.com/nbusseneau/hephaistos/compare/v1.7.2...HEAD
370+
371+
[1.7.2]: https://github.com/nbusseneau/hephaistos/compare/v1.7.1...v1.7.2
368372

369373
[1.7.1]: https://github.com/nbusseneau/hephaistos/compare/v1.7.0...v1.7.1
370374

hephaistos/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def center_y(self) -> int:
2222
DEFAULT_SCREEN = Screen(1920, 1080)
2323

2424
# Hephaistos constants
25-
VERSION = 'v1.7.1'
25+
VERSION = 'v1.7.2'
2626
LATEST_RELEASE_URL = 'https://github.com/nbusseneau/hephaistos/releases/latest/'
2727
LATEST_RELEASE_API_URL = 'https://api.github.com/repos/nbusseneau/hephaistos/releases/latest'
2828
HEPHAISTOS_NAME = 'hephaistos'

windows_version_info.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
VSVersionInfo(
22
ffi=FixedFileInfo(
3-
filevers=(1, 7, 1, 0),
4-
prodvers=(1, 7, 1, 0),
3+
filevers=(1, 7, 2, 0),
4+
prodvers=(1, 7, 2, 0),
55
mask=0x3f,
66
flags=0x0,
77
OS=0x4,
@@ -16,12 +16,12 @@
1616
[
1717
StringStruct(u'CompanyName', u''),
1818
StringStruct(u'FileDescription', u'Ultrawide mod for Hades'),
19-
StringStruct(u'FileVersion', u'1.7.1'),
19+
StringStruct(u'FileVersion', u'1.7.2'),
2020
StringStruct(u'InternalName', u'hephaistos'),
2121
StringStruct(u'LegalCopyright', u''),
2222
StringStruct(u'OriginalFilename', u'hephaistos.exe'),
2323
StringStruct(u'ProductName', u'Hephaistos'),
24-
StringStruct(u'ProductVersion', u'1.7.1')
24+
StringStruct(u'ProductVersion', u'1.7.2')
2525
]
2626
)
2727
]),

0 commit comments

Comments
 (0)