Skip to content

Commit 1bbf0fa

Browse files
committed
1.3.1
1 parent 805b94f commit 1bbf0fa

File tree

4 files changed

+23
-22
lines changed

4 files changed

+23
-22
lines changed

changelog.md

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

3-
## Next
3+
## 1.3.1
4+
*2022-02-19*
45
- Fixed a crash occurring when malformed snapshot versions are inputted.
56
- Fixed snapshot versions not returning results when the final letter is missing.
67
- Updated data pack format to `9`.

package-lock.json

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pack-format",
3-
"version": "1.3.0",
3+
"version": "1.3.1",
44
"description": "Returns the pack_format of any Minecraft version, including snapshots",
55
"scripts": {
66
"prepublish": "tsc",
@@ -35,7 +35,7 @@
3535
},
3636
"license": "ISC",
3737
"devDependencies": {
38-
"@types/node": "ts4.4",
39-
"typescript": "~4.4.3"
38+
"@types/node": "ts4.6",
39+
"typescript": "~4.6.1-rc"
4040
}
4141
}

test/test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ testPackFormat(['1.16.1'], 5)
4040
testPackFormat(['1.16.2-pre1'], 5)
4141
testPackFormat(['1.16.2 pre1'], 5)
4242
testPackFormat(['1.16.2 pre-release 1'], 5)
43-
testPackFormat(['1.18.1', 'data'], 8)
44-
testPackFormat(['1.18.2', 'data'], 9)
4543
testPackFormat(['1.30'], undefined)
4644
testPackFormat(['1.16.3'], 6)
4745
testPackFormat(['1.18'], 8)
46+
testPackFormat(['1.18.1', 'data'], 8)
47+
testPackFormat(['1.18.2', 'data'], 9)
4848
testPackFormat(['11w50a'], undefined)
4949
testPackFormat(['13w23a'], undefined)
5050
testPackFormat(['13w24a'], 1)

0 commit comments

Comments
 (0)