Skip to content

Commit 1542ab6

Browse files
authored
Release 3.15.0 (#236)
* Update options.js * Update package.json * Update README.md * Update index.d.ts * Update HISTORY.md
1 parent 87a958e commit 1542ab6

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

HISTORY.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 3.15.0
2+
* 1.19.10 support
3+
* Remove Realm fetch when joining via invite (#228) @LucienHH
4+
* Add Realm support to Relay (#226) @ATXLtheAxolotl
5+
16
## 3.14.0
27
* 1.19 support
38
* Better handle ping timeout, update documentation (#218) @stevarino

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
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
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)

index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import EventEmitter from "events"
22
import { Realm } from "prismarine-realms"
33

44
declare module "bedrock-protocol" {
5-
type Version = '1.19.2' | '1.19.1' | '1.18.31' | '1.18.30' | '1.18.12' | '1.18.11' | '1.18.10' | '1.18.2' | '1.18.1' | '1.18.0' | '1.17.41' | '1.17.40' | '1.17.34' | '1.17.30' | '1.17.11' | '1.17.10' | '1.17.0' | '1.16.220' | '1.16.210' | '1.16.201'
5+
type Version = '1.19.10' | '1.19.2' | '1.19.1' | '1.18.31' | '1.18.30' | '1.18.12' | '1.18.11' | '1.18.10' | '1.18.2' | '1.18.1' | '1.18.0' | '1.17.41' | '1.17.40' | '1.17.34' | '1.17.30' | '1.17.11' | '1.17.10' | '1.17.0' | '1.16.220' | '1.16.210' | '1.16.201'
66

77
enum title { MinecraftNintendoSwitch, MinecraftJava }
88

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bedrock-protocol",
3-
"version": "3.14.0",
3+
"version": "3.15.0",
44
"description": "Minecraft Bedrock Edition protocol library",
55
"main": "index.js",
66
"scripts": {

src/options.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ 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.19.1'
6+
const CURRENT_VERSION = '1.19.10'
77

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

0 commit comments

Comments
 (0)