diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index c65ef93..3a48a02 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -5,25 +5,25 @@ Currently published crates are: .... -tackler = "24.11.1" -tackler-rs = "0.4.0" -tackler-api = "0.4.0" -tackler-core = "0.4.0" +tackler = "24.11.2" +tackler-rs = "0.5.0" +tackler-api = "0.5.0" +tackler-core = "0.5.0" .... == Releases -=== Tackler release XX.YY.Z +=== Tackler release 24.11.2 [cols="1,2",width=50%] |=== |Component | Version -|Tackler CLI | 24.11.2-dev -|tackler-core | 0.5.0-dev -|tackler-api | 0.5.0-dev -|tackler-rs | 0.5.0-dev +|Tackler CLI | 24.11.2 +|tackler-core | 0.5.0 +|tackler-api | 0.5.0 +|tackler-rs | 0.5.0 |=== @@ -31,15 +31,17 @@ tackler-core = "0.4.0" New features: -* ... - ** ... -* ... - ** ... - +* Add CLI options + ** `--output.dir` + ** `--output.prefix` + ** `--strict.mode` +* Add `export.targets` to configuration ==== Fixes -Fixes in this release: None +Fixes in this release: + +* Tackler compatible output ==== Development @@ -47,9 +49,7 @@ Fixes in this release: None Updated dependencies and tools: * Dependencies -** ... -* Build -** ... +** gix: 0.68.0 ===== Rust toolchain diff --git a/Cargo.lock b/Cargo.lock index e4edb8d..4a9ad0c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1806,7 +1806,7 @@ dependencies = [ [[package]] name = "tackler" -version = "24.11.2-dev" +version = "24.11.2" dependencies = [ "clap", "log", @@ -1820,7 +1820,7 @@ dependencies = [ [[package]] name = "tackler-api" -version = "0.5.0-dev" +version = "0.5.0" dependencies = [ "base64", "indoc", @@ -1837,7 +1837,7 @@ dependencies = [ [[package]] name = "tackler-core" -version = "0.5.0-dev" +version = "0.5.0" dependencies = [ "antlr-rust", "digest", @@ -1861,7 +1861,7 @@ dependencies = [ [[package]] name = "tackler-rs" -version = "0.5.0-dev" +version = "0.5.0" dependencies = [ "indoc", "log", diff --git a/README.adoc b/README.adoc index ce0d490..73d924b 100644 --- a/README.adoc +++ b/README.adoc @@ -68,8 +68,8 @@ cd tackler-ng # To build a release, check relased versions: git tag -l -# Get the release, e.g. v24.11.1 -git checkout v24.11.1 +# Get the release, e.g. v24.11.2 +git checkout v24.11.2 # Build tackler cargo build --release --locked --bin tackler diff --git a/tackler-api/Cargo.toml b/tackler-api/Cargo.toml index f69071e..ea690ba 100644 --- a/tackler-api/Cargo.toml +++ b/tackler-api/Cargo.toml @@ -15,7 +15,7 @@ # [package] name = "tackler-api" -version = "0.5.0-dev" +version = "0.5.0" description = "API components for Tackler accounting engine with native GIT SCM support" edition.workspace = true license.workspace = true @@ -42,5 +42,5 @@ time-tz = { workspace = true } uuid = { workspace = true } [dev-dependencies] -tackler-rs = { path = "../tackler-rs", version = "0.5.0-dev" } +tackler-rs = { path = "../tackler-rs", version = "0.5.0" } indoc = { workspace = true } diff --git a/tackler-cli/CRATES.md b/tackler-cli/CRATES.md index 20b830c..59ea4dd 100644 --- a/tackler-cli/CRATES.md +++ b/tackler-cli/CRATES.md @@ -52,8 +52,8 @@ cd tackler-ng # To build a release, check relased versions: git tag -l -# Get the release, e.g. v24.11.1 -git checkout v24.11.1 +# Get the release, e.g. v24.11.2 +git checkout v24.11.2 # Build tackler cargo build --release --locked --bin tackler diff --git a/tackler-cli/Cargo.toml b/tackler-cli/Cargo.toml index c48aabf..2df4028 100644 --- a/tackler-cli/Cargo.toml +++ b/tackler-cli/Cargo.toml @@ -15,7 +15,7 @@ # [package] name = "tackler" -version = "24.11.2-dev" +version = "24.11.2" description = "Fast, reliable bookkeeping engine with native GIT SCM support for plain text accounting" edition.workspace = true license.workspace = true @@ -27,9 +27,9 @@ include.workspace = true readme = "CRATES.md" [dependencies] -tackler-rs = { path = "../tackler-rs", version = "0.5.0-dev" } -tackler-api = { path = "../tackler-api", version = "0.5.0-dev" } -tackler-core = { path = "../tackler-core", version = "0.5.0-dev" } +tackler-rs = { path = "../tackler-rs", version = "0.5.0" } +tackler-api = { path = "../tackler-api", version = "0.5.0" } +tackler-core = { path = "../tackler-core", version = "0.5.0" } log = { workspace = true } clap = { version = "4.5.20", features = [ "derive" ] } time-tz = { workspace = true } diff --git a/tackler-core/Cargo.toml b/tackler-core/Cargo.toml index fe8ef91..95c41cf 100644 --- a/tackler-core/Cargo.toml +++ b/tackler-core/Cargo.toml @@ -15,7 +15,7 @@ # [package] name = "tackler-core" -version = "0.5.0-dev" +version = "0.5.0" description = "Core components for Tackler accounting engine with native GIT SCM support" edition.workspace = true license.workspace = true @@ -31,8 +31,8 @@ name = "tackler_core" path = "src/lib.rs" [dependencies] -tackler-api = { path = "../tackler-api", version = "0.5.0-dev" } -tackler-rs = { path = "../tackler-rs", version = "0.5.0-dev" } +tackler-api = { path = "../tackler-api", version = "0.5.0" } +tackler-rs = { path = "../tackler-rs", version = "0.5.0" } antlr-rust = "0.3.0-beta" log = { workspace = true } rust_decimal = { workspace = true } @@ -53,6 +53,6 @@ toml = "0.8.19" tikv-jemallocator = { workspace = true } [dev-dependencies] -tackler-rs = { path = "../tackler-rs", version = "0.5.0-dev" } +tackler-rs = { path = "../tackler-rs", version = "0.5.0" } indoc = { workspace = true } diff --git a/tackler-rs/Cargo.toml b/tackler-rs/Cargo.toml index 9f7eef6..0c76b61 100644 --- a/tackler-rs/Cargo.toml +++ b/tackler-rs/Cargo.toml @@ -15,7 +15,7 @@ # [package] name = "tackler-rs" -version = "0.5.0-dev" +version = "0.5.0" description = "Rusty Services for Tackler accounting engine with native GIT SCM support" edition.workspace = true license.workspace = true