diff options
| author | mat <git@matdoes.dev> | 2025-09-28 01:44:37 -0430 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2025-09-28 01:44:37 -0430 |
| commit | 1184e66d056450f1cca300adeab8219d94bc6a72 (patch) | |
| tree | c5be3bcd8652052fb39b5657169c0736a13a2437 | |
| parent | 5ed0c5d635b1c28721b3c32f1d6ce04a30934992 (diff) | |
| download | azalea-drasl-1184e66d056450f1cca300adeab8219d94bc6a72.tar.xz | |
split version in changelog
| -rw-r--r-- | CHANGELOG.md | 12 | ||||
| -rw-r--r-- | azalea-client/src/client.rs | 2 | ||||
| -rw-r--r-- | azalea-client/src/local_player.rs | 1 |
3 files changed, 11 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index ee9b0d0d..cad1953a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,23 @@ # Changelog -All notable changes to this project will be documented in this file. +All notable changes to Azalea will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). -Due to the complexity of Azalea and the fact that almost every Minecraft version +Due to the large scope of Azalea and the fact that almost every Minecraft version is breaking anyways, semantic versioning is not followed. ## [Unreleased] ### Added +### Changed + +### Fixed + +## [0.14.0+mc1.21.8] - 2025-09-28 + +### Added + - Sneaking/crouching. - `HitResult` now contains the entity that's being looked at. - A `QueuedServerBlockUpdates` component that keeps track of block updates per `Update`. diff --git a/azalea-client/src/client.rs b/azalea-client/src/client.rs index 2ec25dcc..368419c9 100644 --- a/azalea-client/src/client.rs +++ b/azalea-client/src/client.rs @@ -43,7 +43,7 @@ use tokio::{ }, time, }; -use tracing::{error, info, warn}; +use tracing::{info, warn}; use uuid::Uuid; use crate::{ diff --git a/azalea-client/src/local_player.rs b/azalea-client/src/local_player.rs index 09232d12..20da4c80 100644 --- a/azalea-client/src/local_player.rs +++ b/azalea-client/src/local_player.rs @@ -11,7 +11,6 @@ use derive_more::{Deref, DerefMut}; use parking_lot::RwLock; use thiserror::Error; use tokio::sync::mpsc; -use tracing::error; use uuid::Uuid; use crate::{ClientInformation, events::Event as AzaleaEvent, player::PlayerInfo}; |
