From 37a385d0e47bc3bbe103b30d989b5db0d1dfa662 Mon Sep 17 00:00:00 2001 From: Quentin Gliech Date: Tue, 10 Sep 2024 11:03:41 +0200 Subject: [PATCH] v0.6.0 --- Cargo.lock | 6 +++--- Cargo.toml | 2 +- README.md | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f25a82b7..65d617b2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1233,7 +1233,7 @@ checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec" [[package]] name = "z33-cli" -version = "0.5.4" +version = "0.6.0" dependencies = [ "anstyle", "anyhow", @@ -1253,7 +1253,7 @@ dependencies = [ [[package]] name = "z33-emulator" -version = "0.5.4" +version = "0.6.0" dependencies = [ "bitflags", "camino", @@ -1271,7 +1271,7 @@ dependencies = [ [[package]] name = "z33-web" -version = "0.5.4" +version = "0.6.0" dependencies = [ "camino", "console_error_panic_hook", diff --git a/Cargo.toml b/Cargo.toml index d6c8f56d..7605007e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ members = ["emulator", "cli", "web"] description = "An emulator for the Zorglub-33 architecture" homepage = "https://pdagog.gitlab.io/ens/z33refcard.pdf" repository = "https://github.com/sandhose/z33-emulator" -version = "0.5.4" +version = "0.6.0" authors = ["Quentin Gliech "] edition = "2021" readme = "README.md" diff --git a/README.md b/README.md index 64edd655..ad38e209 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,7 @@ Releasing a new version is done by running doing the following steps: ``` - Commit the changes ```sh - git commit -m "${VERSION}" ./Cargo.lock ./{web,emulator,cli}/Cargo.toml + git commit -m "${VERSION}" ./Cargo.lock ./Cargo.toml git push ``` - Create a new git tag and push it @@ -91,7 +91,7 @@ Releasing a new version is done by running doing the following steps: ```sh cargo set-version --bump patch VERSION="v$(cargo metadata --format-version=1 | jq -r '.packages[] | select(.name == "z33-cli").version')" -git commit -m "${VERSION}" ./Cargo.lock ./{web,emulator,cli}/Cargo.toml +git commit -m "${VERSION}" ./Cargo.lock ./Cargo.toml git push git tag -s "${VERSION}" git push --tags