parent
2c78372933
commit
1a37b4dac7
3 changed files with 5 additions and 2 deletions
|
|
@ -1,3 +1,6 @@
|
|||
# 3.24.0
|
||||
* 1.19.62 support (@CreeperG16)
|
||||
|
||||
# 3.23.0
|
||||
* 1.19.60 support (@CreeperG16)
|
||||
* added onMsaCode, profilesFolder to ClientOptions (@jarco-dev)
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "bedrock-protocol",
|
||||
"version": "3.23.0",
|
||||
"version": "3.24.0",
|
||||
"description": "Minecraft Bedrock Edition protocol library",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ const CURRENT_VERSION = '1.19.62'
|
|||
const Versions = Object.fromEntries(mcData.versions.bedrock.filter(e => e.releaseType === 'release').map(e => [e.minecraftVersion, e.version]))
|
||||
|
||||
// Skip some low priority versions (middle major) on Github Actions to allow faster CI
|
||||
const skippedVersionsOnGithubCI = ['1.16.210', '1.17.10', '1.17.30', '1.18.11', '1.19.10', '1.19.20']
|
||||
const skippedVersionsOnGithubCI = ['1.16.210', '1.17.10', '1.17.30', '1.18.11', '1.19.10', '1.19.20', '1.19.50']
|
||||
const testedVersions = process.env.CI ? Object.keys(Versions).filter(v => !skippedVersionsOnGithubCI.includes(v)) : Object.keys(Versions)
|
||||
|
||||
const defaultOptions = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue