From 7595b6c3e1749c38637cd9eeb57f1c7ebfa3b412 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Sat, 23 Nov 2024 07:13:25 +0100 Subject: [PATCH 1/2] Update version of Jubako. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 5a14d7d..185ca18 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ homepage = "https://github.com/jubako/waj" license = "MIT" [workspace.dependencies] -jbk = { git = "https://github.com/jubako/jubako.git", package = "jubako", features = ["clap"], version = "0.3.2-dev" } +jbk = { git = "https://github.com/jubako/jubako.git", package = "jubako", features = ["clap"], version = "0.3.3" } [package] name = "waj" From fbcd95a907d03e9a55bfb8451d89cd34f87ce1a1 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Sat, 23 Nov 2024 07:17:12 +0100 Subject: [PATCH 2/2] New version 0.3.0 --- Cargo.lock | 4 ++-- Cargo.toml | 5 +++-- Changelog.md | 14 ++++++++++++++ 3 files changed, 19 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 21ddad1..7377ed1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -592,7 +592,7 @@ checksum = "433bfe06b8c75da9b2e3fbea6e5329ff87748f0b144ef75306e674c3f6f7c13f" [[package]] name = "libwaj" -version = "0.2.1" +version = "0.3.0" dependencies = [ "ascii", "blake3", @@ -1023,7 +1023,7 @@ dependencies = [ [[package]] name = "waj" -version = "0.2.1" +version = "0.3.0" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index 185ca18..b69626f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["libwaj"] [workspace.package] edition = "2021" -version = "0.2.1" +version = "0.3.0" authors = ["Matthieu Gautier "] repository = "https://github.com/jubako/waj" homepage = "https://github.com/jubako/waj" @@ -22,6 +22,7 @@ authors.workspace = true edition.workspace = true repository.workspace = true license.workspace = true +default-run = "waj" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -30,7 +31,7 @@ clap = { version = "4.0.32", features = ["derive", "cargo"] } clap_mangen = "0.2.20" clap_complete = "4.5.0" human-panic = "2.0.2" -waj = { path = "libwaj", package = "libwaj", version = "0.2.1" } +waj = { path = "libwaj", package = "libwaj", version = "0.3.0" } indicatif = "0.17.3" env_logger = "0.11.5" anyhow = "1.0.75" diff --git a/Changelog.md b/Changelog.md index 24e0241..dc6bf49 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,17 @@ +# Waj 0.3.0 + +This release is based on version 0.3.2 of Jubako. +This is a major release, see Jubako changelog for changes impacting arx. +Main information to remember of Jubako release is that the format as evolved and compatibility +with previous version is broken. + +- Update code with new API of Jubako library. +- `--version` option now includes the git commit. +- Better command line option (select compression, concat mode, check of input and output path) + +There is no functional change but as new jubako format is not compatible, we udpate the version. + + # Waj 0.2.1 - Add option to generate man page and completion script.