Skip to content

Commit

Permalink
Release 24.11.1
Browse files Browse the repository at this point in the history
Signed-off-by: 35V LG84 <[email protected]>
  • Loading branch information
35VLG84 committed Nov 17, 2024
1 parent 3e8f998 commit 8e9ce27
Show file tree
Hide file tree
Showing 8 changed files with 40 additions and 35 deletions.
37 changes: 21 additions & 16 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,25 @@
Currently published crates are:

....
tackler = "0.3.0"
tackler-rs = "0.3.0"
tackler-api = "0.3.0"
tackler-core = "0.3.0"
tackler = "24.11.1"
tackler-rs = "0.4.0"
tackler-api = "0.4.0"
tackler-core = "0.4.0"
....


== Releases

=== Tackler release XX.YY.0
=== Tackler release 24.11.1

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

|Tackler CLI | 0.4.0-dev
|tackler-core | 0.4.0-dev
|tackler-api | 0.4.0-dev
|tackler-rs | 0.4.0-dev
|Tackler CLI | 24.11.1
|tackler-core | 0.4.0
|tackler-api | 0.4.0
|tackler-rs | 0.4.0
|===


Expand All @@ -32,25 +32,30 @@ tackler-core = "0.3.0"
New features:

* Full support for configuration, see:
** xref:./conf/tackler.toml[Main Tackler configuration]
** xref:./conf/accounts.toml[Chart of Accounts]
** xref:./conf/commodities.toml[Chart of Commodities]
** xref:./conf/tags.toml[Chart of Tags]
** xref:./examples/tackler.toml[Main Tackler configuration]
*** xref:./examples/tackler/conf/accounts.toml[Chart of Accounts]
*** xref:./examples/tackler/conf/commodities.toml[Chart of Commodities]
*** xref:./examples/tackler/conf/tags.toml[Chart of Tags]
* Added Examples:
** xref:./examples/simple.toml[Simple Filesystem based setup]
** xref:./examples/audit.toml[Complex Git and Audit setup]


==== Fixes

Fixes in this release: None
Fixes in this release:

* Changed how CLI and configuration options and defaults


==== Development

Updated dependenies and tools:

* Dependencies
** ...
** no direct dependency changes
* Build
** ...
** Added Github Actions workflow "build"


===== Rust toolchain
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 @@ -81,8 +81,8 @@ cd tackler-ng
# Check the latest relase version
git tag -l
# Get the release, e.g. v24.11.0
git checkout v24.11.0
# Get the release, e.g. v24.11.1
git checkout v24.11.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.4.0-dev"
version = "0.4.0"
description = "Rusty Tackler api components"
edition.workspace = true
license.workspace = true
Expand All @@ -42,5 +42,5 @@ time-tz = { workspace = true }
uuid = { workspace = true }

[dev-dependencies]
tackler-rs = { path = "../tackler-rs", version = "0.4.0-dev" }
tackler-rs = { path = "../tackler-rs", version = "0.4.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 @@ -49,8 +49,8 @@ cd tackler-ng
# Check the latest relase version, format is YY-MM-<digit>
git tag -l

# Select the latest release, e.g. v24.11.0
git checkout v24.11.0
# Select the latest release, e.g. v24.11.1
git checkout v24.11.1

# Build tackler on the workspace root
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 = "0.4.0-dev"
version = "24.11.1"
description = "Rusty implementation of Tackler CLI app"
edition.workspace = true
license.workspace = true
Expand All @@ -27,9 +27,9 @@ include.workspace = true
readme = "CRATES.md"

[dependencies]
tackler-rs = { path = "../tackler-rs", version = "0.4.0-dev" }
tackler-api = { path = "../tackler-api", version = "0.4.0-dev" }
tackler-core = { path = "../tackler-core", version = "0.4.0-dev" }
tackler-rs = { path = "../tackler-rs", version = "0.4.0" }
tackler-api = { path = "../tackler-api", version = "0.4.0" }
tackler-core = { path = "../tackler-core", version = "0.4.0" }
log = { workspace = true }
clap = { version = "4.5.20", features = [ "derive" ] }
time-tz = { workspace = true }
Expand Down
8 changes: 4 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.4.0-dev"
version = "0.4.0"
description = "Rusty Tackler core components"
edition.workspace = true
license.workspace = true
Expand All @@ -31,8 +31,8 @@ name = "tackler_core"
path = "src/lib.rs"

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

[dev-dependencies]
tackler-rs = { path = "../tackler-rs", version = "0.4.0-dev" }
tackler-rs = { path = "../tackler-rs", version = "0.4.0" }
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.4.0-dev"
version = "0.4.0"
description = "Rusty services for Tackler"
edition.workspace = true
license.workspace = true
Expand Down

0 comments on commit 8e9ce27

Please sign in to comment.