From 6fb751accf4db7bbecaa998e3e573109080a94e5 Mon Sep 17 00:00:00 2001 From: Snowiiii Date: Wed, 23 Oct 2024 19:41:08 +0200 Subject: [PATCH] Update to 1.21.3 --- README.md | 2 +- pumpkin-protocol/src/lib.rs | 2 +- pumpkin/src/server/mod.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 801783a7d..fd1e91b7a 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ ![CI](https://github.com/Snowiiii/Pumpkin/actions/workflows/rust.yml/badge.svg) [![Discord](https://img.shields.io/discord/1268592337445978193.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2)](https://discord.gg/wT8XjrjKkf) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) -![Current version)](https://img.shields.io/badge/current_version-1.21.2-blue) +![Current version)](https://img.shields.io/badge/current_version-1.21.3-blue) diff --git a/pumpkin-protocol/src/lib.rs b/pumpkin-protocol/src/lib.rs index cd1110d55..0adbf7cd5 100644 --- a/pumpkin-protocol/src/lib.rs +++ b/pumpkin-protocol/src/lib.rs @@ -205,7 +205,7 @@ pub struct StatusResponse { } #[derive(Serialize)] pub struct Version { - /// The current name of the Version (e.g. 1.21.2) + /// The current name of the Version (e.g. 1.21.3) pub name: String, /// The current Protocol Version (e.g. 767) pub protocol: u32, diff --git a/pumpkin/src/server/mod.rs b/pumpkin/src/server/mod.rs index 00d29dd71..e2a36afa0 100644 --- a/pumpkin/src/server/mod.rs +++ b/pumpkin/src/server/mod.rs @@ -32,7 +32,7 @@ mod connection_cache; mod key_store; pub mod ticker; -pub const CURRENT_MC_VERSION: &str = "1.21.2"; +pub const CURRENT_MC_VERSION: &str = "1.21.3"; pub struct Server { key_store: KeyStore,