Skip to content

Commit cc43d14

Browse files
committed
update changelog and release 0.15.1
1 parent 675e56f commit cc43d14

File tree

3 files changed

+44
-48
lines changed

3 files changed

+44
-48
lines changed

CHANGELOG.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
66
Due to the large scope of Azalea and the fact that almost every Minecraft version
77
is breaking anyways, semantic versioning is not followed.
88

9-
## [Unreleased]
10-
11-
### Added
12-
13-
### Changed
9+
## [0.15.1+mc1.21.11] - 2026-02-03
1410

1511
### Fixed
1612

13+
- Fix compilation errors from unstable dependencies.
1714
- Serializing `FormattedText` with serde was writing `extra` twice.
1815
- Attack cooldowns were being applied incorrectly for tools.
1916
- `Identifier` had an incorrect `Hash` and `PartialEq` implementation.
2017
- Explosion knockback was being applied incorrectly.
21-
- Click events in chat messages were missing.
2218

2319
## [0.15.0+mc1.21.11] - 2025-12-18
2420

Cargo.lock

Lines changed: 21 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ resolver = "3"
2222
# --- Workspace Settings ---
2323

2424
[workspace.package]
25-
version = "0.15.0+mc1.21.11"
25+
version = "0.15.1+mc1.21.11"
2626
edition = "2024"
2727
license = "MIT"
2828
repository = "https://github.com/azalea-rs/azalea"
@@ -91,26 +91,26 @@ tracing = "0.1.44"
9191
tracing-subscriber = "0.3.22"
9292
uuid = "1.20.0"
9393

94-
azalea-block-macros = { path = "azalea-block/azalea-block-macros", version = "0.15.0" }
95-
azalea-block = { path = "azalea-block", version = "0.15.0" }
96-
azalea-auth = { path = "azalea-auth", version = "0.15.0", default-features = false }
97-
azalea-brigadier = { path = "azalea-brigadier", version = "0.15.0" }
98-
azalea-buf-macros = { path = "azalea-buf/azalea-buf-macros", version = "0.15.0" }
99-
azalea-buf = { path = "azalea-buf", version = "0.15.0" }
100-
azalea-chat = { path = "azalea-chat", version = "0.15.0" }
101-
azalea-client = { path = "azalea-client", version = "0.15.0", default-features = false }
102-
azalea-core = { path = "azalea-core", version = "0.15.0" }
103-
azalea-crypto = { path = "azalea-crypto", version = "0.15.0" }
104-
azalea-entity = { path = "azalea-entity", version = "0.15.0" }
105-
azalea-inventory-macros = { path = "azalea-inventory/azalea-inventory-macros", version = "0.15.0" }
106-
azalea-inventory = { path = "azalea-inventory", version = "0.15.0" }
107-
azalea-language = { path = "azalea-language", version = "0.15.0" }
108-
azalea-physics = { path = "azalea-physics", version = "0.15.0" }
109-
azalea-protocol-macros = { path = "azalea-protocol/azalea-protocol-macros", version = "0.15.0" }
110-
azalea-protocol = { path = "azalea-protocol", version = "0.15.0", default-features = false }
111-
azalea-registry-macros = { path = "azalea-registry/azalea-registry-macros", version = "0.15.0" }
112-
azalea-registry = { path = "azalea-registry", version = "0.15.0" }
113-
azalea-world = { path = "azalea-world", version = "0.15.0" }
94+
azalea-block-macros = { path = "azalea-block/azalea-block-macros", version = "0.15.1" }
95+
azalea-block = { path = "azalea-block", version = "0.15.1" }
96+
azalea-auth = { path = "azalea-auth", version = "0.15.1", default-features = false }
97+
azalea-brigadier = { path = "azalea-brigadier", version = "0.15.1" }
98+
azalea-buf-macros = { path = "azalea-buf/azalea-buf-macros", version = "0.15.1" }
99+
azalea-buf = { path = "azalea-buf", version = "0.15.1" }
100+
azalea-chat = { path = "azalea-chat", version = "0.15.1" }
101+
azalea-client = { path = "azalea-client", version = "0.15.1", default-features = false }
102+
azalea-core = { path = "azalea-core", version = "0.15.1" }
103+
azalea-crypto = { path = "azalea-crypto", version = "0.15.1" }
104+
azalea-entity = { path = "azalea-entity", version = "0.15.1" }
105+
azalea-inventory-macros = { path = "azalea-inventory/azalea-inventory-macros", version = "0.15.1" }
106+
azalea-inventory = { path = "azalea-inventory", version = "0.15.1" }
107+
azalea-language = { path = "azalea-language", version = "0.15.1" }
108+
azalea-physics = { path = "azalea-physics", version = "0.15.1" }
109+
azalea-protocol-macros = { path = "azalea-protocol/azalea-protocol-macros", version = "0.15.1" }
110+
azalea-protocol = { path = "azalea-protocol", version = "0.15.1", default-features = false }
111+
azalea-registry-macros = { path = "azalea-registry/azalea-registry-macros", version = "0.15.1" }
112+
azalea-registry = { path = "azalea-registry", version = "0.15.1" }
113+
azalea-world = { path = "azalea-world", version = "0.15.1" }
114114

115115
[workspace.lints.clippy]
116116
# https://users.rust-lang.org/t/to-string-vs-to-owned-for-string-literals/1441

0 commit comments

Comments
 (0)