Skip to content

Commit 2f5b88d

Browse files
committed
Update pack formats to 36 (R) / 50 (D)
1 parent e822ad9 commit 2f5b88d

3 files changed

Lines changed: 9 additions & 3 deletions

File tree

changelog.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Changelog
22

33
## Next
4-
- Updated resource pack format to `34`.
5-
- Updated data pack format to `48`.
4+
- Updated resource pack format to `36`.
5+
- Updated data pack format to `50`.
66
- Fixed special case checking not being applied to full version names leading to no result for certain versions.
77

88
## 1.3.15

src/index.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,11 @@ const START_SNAPSHOTS: Record<string, Record<PackType, FormatResult>> = {
6969
'24w19a': { resource: 33, data: 43 },
7070
'24w20a': { resource: 33, data: 44 },
7171
'24w21a': { resource: 34, data: 45 },
72+
'24w33a': { resource: 35, data: 49 },
73+
'24w34a': { resource: 36, data: 50 },
7274

7375
// The below should be the last released snapshot + 1 week
74-
['24w22a']: { resource: undefined, data: undefined },
76+
['24w35a']: { resource: undefined, data: undefined },
7577
}
7678

7779
const SPECIAL: Record<PackType, Record<number, string[]>> = {

test/pack-formats-tests.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,10 @@ Types:
149149
"24w20a" (d) 44
150150
"24w21a" (r) 34
151151
"24w21a" (d) 45
152+
"24w33a" (r) 35
153+
"24w33a" (d) 49
154+
"24w34a" (r) 36
155+
"24w34a" (d) 50
152156

153157
=== Special cases ===
154158

0 commit comments

Comments
 (0)