Skip to content

Commit

Permalink
Release 24.12.1
Browse files Browse the repository at this point in the history
Signed-off-by: 35V LG84 <35vlg84-x4e6b92@e257.fi>
  • Loading branch information
35VLG84 committed Dec 10, 2024
1 parent cd4e352 commit 45f8647
Show file tree
Hide file tree
Showing 8 changed files with 28 additions and 29 deletions.
20 changes: 10 additions & 10 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,25 @@
Currently published crates are:

....
tackler = "24.11.2"
tackler-rs = "0.5.0"
tackler-api = "0.5.0"
tackler-core = "0.5.0"
tackler = "24.12.1"
tackler-rs = "0.6.0"
tackler-api = "0.6.0"
tackler-core = "0.6.0"
....


== Releases

=== Tackler release XX.YY.Z
=== Tackler release 24.12.1

[cols="1,2",width=50%]
|===
|Component | Version

|Tackler CLI | 24.11.3-dev
|tackler-core | 0.6.0-dev
|tackler-api | 0.6.0-dev
|tackler-rs | 0.6.0-dev
|Tackler CLI | 24.12.1
|tackler-core | 0.6.0
|tackler-api | 0.6.0
|tackler-rs | 0.6.0
|===


Expand All @@ -38,7 +38,7 @@ New features:

Fixes in this release:

* Register report: Tackler-mkI compatible output
* Register report: Use Tackler-MkI compatible output
* Fix broken `--group-by` cli option (clap definition)
* Print location with full precision (with trailing zeros)

Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ cd tackler-ng
# To build a release, check relased versions:
git tag -l
# Get the release, e.g. v24.11.2
git checkout v24.11.2
# Get the release, e.g. v24.12.1
git checkout v24.12.1
# Build tackler
cargo build --release --locked --bin tackler
Expand Down
4 changes: 2 additions & 2 deletions tackler-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#
[package]
name = "tackler-api"
version = "0.6.0-dev"
version = "0.6.0"
description = "API components for Tackler accounting engine with native GIT SCM support"
edition.workspace = true
license.workspace = true
Expand Down Expand Up @@ -44,5 +44,5 @@ uuid = { workspace = true }

[dev-dependencies]
rust_decimal_macros = { workspace = true }
tackler-rs = { path = "../tackler-rs", version = "0.6.0-dev" }
tackler-rs = { path = "../tackler-rs", version = "0.6.0" }
indoc = { workspace = true }
4 changes: 2 additions & 2 deletions tackler-cli/CRATES.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ cd tackler-ng
# To build a release, check relased versions:
git tag -l

# Get the release, e.g. v24.11.2
git checkout v24.11.2
# Get the release, e.g. v24.12.1
git checkout v24.12.1

# Build tackler
cargo build --release --locked --bin tackler
Expand Down
8 changes: 4 additions & 4 deletions tackler-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#
[package]
name = "tackler"
version = "24.11.2"
version = "24.12.1"
description = "Fast, reliable bookkeeping tool with native GIT SCM support for plain text accounting"
edition.workspace = true
license.workspace = true
Expand All @@ -28,9 +28,9 @@ rust-version.workspace = true
readme = "CRATES.md"

[dependencies]
tackler-rs = { path = "../tackler-rs", version = "0.6.0-dev" }
tackler-api = { path = "../tackler-api", version = "0.6.0-dev" }
tackler-core = { path = "../tackler-core", version = "0.6.0-dev" }
tackler-rs = { path = "../tackler-rs", version = "0.6.0" }
tackler-api = { path = "../tackler-api", version = "0.6.0" }
tackler-core = { path = "../tackler-core", version = "0.6.0" }
log = { workspace = true }
clap = { version = "4.5.20", features = [ "derive" ] }
time-tz = { workspace = true }
Expand Down
7 changes: 3 additions & 4 deletions tackler-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#
[package]
name = "tackler-core"
version = "0.6.0-dev"
version = "0.6.0"
description = "Core components for Tackler accounting engine with native GIT SCM support"
edition.workspace = true
license.workspace = true
Expand All @@ -32,8 +32,8 @@ name = "tackler_core"
path = "src/lib.rs"

[dependencies]
tackler-api = { path = "../tackler-api", version = "0.6.0-dev" }
tackler-rs = { path = "../tackler-rs", version = "0.6.0-dev" }
tackler-api = { path = "../tackler-api", version = "0.6.0" }
tackler-rs = { path = "../tackler-rs", version = "0.6.0" }
antlr-rust = "0.3.0-beta"
log = { workspace = true }
rust_decimal = { workspace = true }
Expand All @@ -54,7 +54,6 @@ toml = "0.8.19"
tikv-jemallocator = { workspace = true }

[dev-dependencies]
tackler-rs = { path = "../tackler-rs", version = "0.6.0-dev" }
rust_decimal_macros = { workspace = true }
indoc = { workspace = true }

2 changes: 1 addition & 1 deletion tackler-rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#
[package]
name = "tackler-rs"
version = "0.6.0-dev"
version = "0.6.0"
description = "Rusty Services for Tackler accounting engine with native GIT SCM support"
edition.workspace = true
license.workspace = true
Expand Down

0 comments on commit 45f8647

Please sign in to comment.