chore: update dependencies; bump version to 0.5.0

This commit is contained in:
Jef Roosens 2026-04-14 21:30:27 +02:00
parent 7987bef384
commit f0d5522661
Signed by: Jef Roosens
GPG key ID: 21FD3D77D56BAF49
4 changed files with 218 additions and 214 deletions

View file

@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased](https://git.rustybever.be/Chewing_Bever/alex/src/branch/dev)
## [0.5.0](https://git.rustybever.be/Chewing_Bever/alex/src/tag/0.5.0)
### Added
* CLI commands to interact with the PaperMC API

425
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -7,7 +7,7 @@ members = [
]
[workspace.package]
version = "0.4.2"
version = "0.5.0"
authors = ["Jef Roosens"]
edition = "2021"

View file

@ -43,7 +43,8 @@ run:
--java '/usr/lib/jvm/java-21-openjdk/bin/java' \
--layers '2min,2,4,4;3min,3,2,2'
publish-release-binaries tag: (build-release 'x86_64-unknown-linux-musl') (build-release 'aarch64-unknown-linux-musl')
# Publish the binaries and packages for a new release
publish-release tag: (build-release 'x86_64-unknown-linux-musl') (build-release 'aarch64-unknown-linux-musl')
# Check the binaries are proper static binaries
[ "$(readelf -d target/x86_64-unknown-linux-musl/release/alex | grep NEEDED | wc -l)" = 0 ]
[ "$(readelf -d target/aarch64-unknown-linux-musl/release/alex | grep NEEDED | wc -l)" = 0 ]