Skip to content

Commit 63eb673

Browse files
authored
1.20.40 (#459)
1 parent 50911d2 commit 63eb673

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
os: [ubuntu-latest, windows-latest]
20-
node-version: [16.x]
20+
node-version: [18.x]
2121
runs-on: ${{ matrix.os }}
22-
timeout-minutes: 12
22+
timeout-minutes: 14
2323
steps:
2424
- uses: actions/checkout@v2
2525
- name: Use Node.js ${{ matrix.node-version }}

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Minecraft Bedrock Edition (aka MCPE) protocol library, supporting authentication
1111

1212
## Features
1313

14-
- Supports Minecraft Bedrock version 1.16.201, 1.16.210, 1.16.220, 1.17.0, 1.17.10, 1.17.30, 1.17.40, 1.18.0, 1.18.11, 1.18.30, 1.19.1, 1.19.10, 1.19.20, 1.19.21, 1.19.30, 1.19.40, 1.19.41, 1.19.50, 1.19.60, 1.19.62, 1.19.63, 1.19.70, 1.19.80, 1.20.0, 1.20.10, 1.20.30
14+
- Supports Minecraft Bedrock version 1.16.201, 1.16.210, 1.16.220, 1.17.0, 1.17.10, 1.17.30, 1.17.40, 1.18.0, 1.18.11, 1.18.30, 1.19.1, 1.19.10, 1.19.20, 1.19.21, 1.19.30, 1.19.40, 1.19.41, 1.19.50, 1.19.60, 1.19.62, 1.19.63, 1.19.70, 1.19.80, 1.20.0, 1.20.10, 1.20.30, 1.20.40
1515
- Parse and serialize packets as JavaScript objects
1616
- Automatically respond to keep-alive packets
1717
- [Proxy and mitm connections](docs/API.md#proxy-docs)

src/options.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ const mcData = require('minecraft-data')
33
// Minimum supported version (< will be kicked)
44
const MIN_VERSION = '1.16.201'
55
// Currently supported verson. Note, clients with newer versions can still connect as long as data is in minecraft-data
6-
const CURRENT_VERSION = '1.20.30'
6+
const CURRENT_VERSION = '1.20.40'
77

88
const Versions = Object.fromEntries(mcData.versions.bedrock.filter(e => e.releaseType === 'release').map(e => [e.minecraftVersion, e.version]))
99

1010
// Skip some low priority versions (middle major) on Github Actions to allow faster CI
11-
const skippedVersionsOnGithubCI = ['1.16.210', '1.17.10', '1.17.30', '1.18.11', '1.19.10', '1.19.20', '1.19.30', '1.19.40', '1.19.50', '1.19.60', '1.19.63', '1.19.70']
11+
const skippedVersionsOnGithubCI = ['1.16.210', '1.17.10', '1.17.30', '1.18.11', '1.19.10', '1.19.20', '1.19.30', '1.19.40', '1.19.50', '1.19.60', '1.19.63', '1.19.70', '1.20.10']
1212
const testedVersions = process.env.CI ? Object.keys(Versions).filter(v => !skippedVersionsOnGithubCI.includes(v)) : Object.keys(Versions)
1313

1414
const defaultOptions = {

0 commit comments

Comments
 (0)