Update package version to 0.9.0

This commit is contained in:
2026-05-01 16:27:16 +03:00
parent 06d8365088
commit c9632f4bb1
2 changed files with 6 additions and 4 deletions
+2 -2
View File
@@ -12,13 +12,13 @@ prepare() {
# The build function is executed in the source directory
# This function is used to compile the source code
build() {
cargo build --release --frozen
cargo build --release --frozen --features cli
}
# The check function is executed in the source directory
# This function is used to run tests to verify the package has been compiled correctly
check() {
cargo test --frozen
cargo test --frozen --features cli
}
# The package function is executed in the source directory