Skip to content

Commit 2fcb3fe

Browse files
authored
Merge pull request #2 from ImCodist/develop
Update pack maximum format to 32 & update version number.
2 parents 9fed4e9 + 2cebb05 commit 2fcb3fe

3 files changed

Lines changed: 9 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77

8+
## [1.1.1] - 2024-06-13
9+
10+
### Changed
11+
- Updated maximum resource pack format to 34.
12+
13+
814
## [1.1.0] - 2024-06-02
915

1016
### Added
@@ -17,5 +23,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1723
- Initial Release
1824

1925

26+
[1.1.1]: https://github.com/ImCodist/minecraft-pride-pack-generator/compare/1.1.0...1.1.1
2027
[1.1.0]: https://github.com/ImCodist/minecraft-pride-pack-generator/compare/1.0.0...1.1.0
2128
[1.0.0]: https://github.com/ImCodist/minecraft-pride-pack-generator/releases/tag/1.0.0

src/data/package.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
PACK_DESCRIPTION = "Makes a variety of Minecraft's textures into pride flags."
1717

1818
PACK_MINIMUM_FORMAT = 18
19-
PACK_MAXIMUM_FORMAT = 32
19+
PACK_MAXIMUM_FORMAT = 34
2020

2121

2222
class PackageData():

src/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import gitinfo
99

1010

11-
VERSION = (1, 1, 0)
11+
VERSION = (1, 1, 1)
1212

1313

1414
# setup versioning info

0 commit comments

Comments
 (0)