From 79a18f91fdd013e041e1844b4389ad6d195599c7 Mon Sep 17 00:00:00 2001 From: Nixinova Date: Thu, 10 Aug 2023 20:36:33 +1200 Subject: [PATCH] 1.3.9 --- .github/workflows/test.yml | 2 +- changelog.md | 5 +++-- package-lock.json | 20 +++++++++++++++++--- package.json | 2 +- 4 files changed, 22 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0900cca..968d1af 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: - node-version: [18.x, 17.x, 16.x, 14.x, 12.x] + node-version: [20.x, 18.x, 16.x, 14.x, 12.x] steps: - uses: actions/checkout@v2 diff --git a/changelog.md b/changelog.md index 5a88716..ba911cc 100644 --- a/changelog.md +++ b/changelog.md @@ -1,7 +1,8 @@ # Changelog -## Next -- Changed the CLI output to display both resource and data pack formats on separate lines. +## 1.3.9 +*2023-08-10* +- Changed the CLI output to display both resource and data pack formats on separate lines when no type is specified. - Updated resource and data pack formats to `17`. ## 1.3.8 diff --git a/package-lock.json b/package-lock.json index 5f13ced..cab626b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "pack-format", - "version": "1.3.8", - "lockfileVersion": 3, + "version": "1.3.9", + "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "pack-format", - "version": "1.3.8", + "version": "1.3.9", "license": "ISC", "bin": { "pack-format": "bin/index.js" @@ -38,5 +38,19 @@ "node": ">=12.20" } } + }, + "dependencies": { + "@types/node": { + "version": "20.4.8", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.4.8.tgz", + "integrity": "sha512-0mHckf6D2DiIAzh8fM8f3HQCvMKDpK94YQ0DSVkfWTG9BZleYIWudw9cJxX8oCk9bM+vAkDyujDV6dmKHbvQpg==", + "dev": true + }, + "typescript": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.0.4.tgz", + "integrity": "sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==", + "dev": true + } } } diff --git a/package.json b/package.json index e017eae..7aee62a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "pack-format", - "version": "1.3.8", + "version": "1.3.9", "description": "Returns the pack_format of any Minecraft version, including snapshots", "scripts": { "prepublish": "tsc",