Skip to content

Commit 10482a3

Browse files
committed
release: update to version 0.30.9
1 parent 67cdd0c commit 10482a3

File tree

3 files changed

+14
-7
lines changed

3 files changed

+14
-7
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
# Task Keeper Changelog
44

5+
## [0.30.9] - 2025-12-06
6+
7+
- Fix cmake project detection
8+
- VS Code Task enhancement
9+
- Update to amper 0.9.1
10+
- Update to just 1.44
11+
512
## [0.30.8] - 2025-10-26
613

714
- Add `tk sbom` for Maven and Gradle project to generate SBOM with CycloneDX format: `target/application.cdx.json` or

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
22
name = "task-keeper"
3-
version = "0.30.8"
3+
version = "0.30.9"
44
edition = "2024"
55
authors = ["linux_china <[email protected]>"]
66
description = "Task keeper to manage tasks from different task runners"
7-
keywords = ["task", "just", "npm", "deno"]
7+
keywords = ["task", "just", "npm", "bun"]
88
categories = ["command-line-utilities"]
99
documentation = "https://github.com/linux-china/task-keeper"
1010
readme = "README.md"
@@ -25,7 +25,7 @@ path = "src/sq.rs"
2525
[dependencies]
2626
serde = { version = "1.0", features = ["derive"] }
2727
serde_json = "1.0"
28-
jsonc-parser = { version = "0.27", features = ["serde"] }
28+
jsonc-parser = { version = "0.28", features = ["serde"] }
2929
serde-xml-rs = "0.8"
3030
toml = "0.9"
3131
java-properties = "2"
@@ -37,14 +37,14 @@ dirs-sys = "0.5"
3737
which = "8.0"
3838
thiserror = "2"
3939
error-stack = "0.6"
40-
dotenvx-rs = "0.4.27"
40+
dotenvx-rs = "0.4.28"
4141
shlex = "1.3"
4242
cfg-if = "1"
43-
uuid = { version = "1.18", features = ["v4", "v7"] }
43+
uuid = { version = "1.19", features = ["v4", "v7"] }
4444
logos = "0.15"
4545
shell-escape = "0.1"
4646
bytecount = "0.6.9"
47-
just = "1.43"
47+
just = "1.44"
4848
reqwest = { version = "0.12", features = ["blocking"] }
4949
anyhow = "1.0"
5050
tokio = { version = "1.48", features = ["full"] }

src/app.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! clap App for command cli
22
use clap::{Command, Arg, ArgAction};
33

4-
pub const VERSION: &str = "0.30.8";
4+
pub const VERSION: &str = "0.30.9";
55

66
pub fn build_app() -> Command {
77
Command::new("tk")

0 commit comments

Comments
 (0)