Skip to content

Commit 83d08be

Browse files
committed
chore: release
1 parent a3c0128 commit 83d08be

File tree

28 files changed

+167
-52
lines changed

28 files changed

+167
-52
lines changed

Cargo.lock

Lines changed: 13 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/konfigkoll/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,24 @@ edited).
88
For a possibly more edited message focused on the binary please see the github
99
releases.
1010

11+
## [0.1.10] - 2024-12-16
12+
13+
### 🚀 Features
14+
15+
- Add support for locked users in sysusers parser (needed to work on newer systemd)
16+
17+
### 🐛 Bug fixes
18+
19+
- Fix new clippy warnings on Rust 1.82
20+
21+
### 🩺 Diagnostics & output formatting
22+
23+
- Improve parse errors from sysusers
24+
25+
### ⚙️ Other stuff
26+
27+
- Use workspace hack with cargo-hakari for faster dev builds
28+
1129
## [0.1.9] - 2024-09-20
1230

1331
### 🚀 Features

crates/konfigkoll/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ license = "MPL-2.0"
1212
name = "konfigkoll"
1313
repository = "https://github.com/VorpalBlade/paketkoll"
1414
rust-version = "1.80.0"
15-
version = "0.1.9"
15+
version = "0.1.10"
1616

1717
[[bin]]
1818
name = "konfigkoll"
@@ -46,14 +46,14 @@ directories.workspace = true
4646
either.workspace = true
4747
eyre.workspace = true
4848
itertools.workspace = true
49-
konfigkoll_core = { version = "0.5.0", path = "../konfigkoll_core" }
50-
konfigkoll_script = { version = "0.1.7", path = "../konfigkoll_script" }
51-
konfigkoll_types = { version = "0.2.3", path = "../konfigkoll_types" }
52-
konfigkoll_utils = { version = "0.1.6", path = "../konfigkoll_utils" }
49+
konfigkoll_core = { version = "0.5.1", path = "../konfigkoll_core" }
50+
konfigkoll_script = { version = "0.1.8", path = "../konfigkoll_script" }
51+
konfigkoll_types = { version = "0.2.4", path = "../konfigkoll_types" }
52+
konfigkoll_utils = { version = "0.1.7", path = "../konfigkoll_utils" }
5353
ouroboros.workspace = true
54-
paketkoll_cache = { version = "0.2.6", path = "../paketkoll_cache" }
55-
paketkoll_core = { version = "0.5.7", path = "../paketkoll_core" }
56-
paketkoll_types = { version = "0.2.1", path = "../paketkoll_types" }
54+
paketkoll_cache = { version = "0.2.7", path = "../paketkoll_cache" }
55+
paketkoll_core = { version = "0.5.8", path = "../paketkoll_core" }
56+
paketkoll_types = { version = "0.2.2", path = "../paketkoll_types" }
5757
paketkoll_workspace_hack = { version = "0.1", path = "../paketkoll_workspace_hack" }
5858
rayon.workspace = true
5959
rune = { workspace = true, features = ["cli"] }

crates/konfigkoll_core/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ edited).
88
For a possibly more edited message focused on the binary please see the github
99
releases.
1010

11+
## [0.5.1] - 2024-12-16
12+
13+
### 🚀 Features
14+
15+
- Prepare workspace hack with cargo-hakari
16+
1117
## [0.5.0] - 2024-09-20
1218

1319
### 🚀 Features

crates/konfigkoll_core/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "MPL-2.0"
77
name = "konfigkoll_core"
88
repository = "https://github.com/VorpalBlade/paketkoll"
99
rust-version = "1.80.0"
10-
version = "0.5.0"
10+
version = "0.5.1"
1111

1212
[dependencies]
1313
ahash.workspace = true
@@ -20,11 +20,11 @@ duct.workspace = true
2020
either.workspace = true
2121
eyre.workspace = true
2222
itertools.workspace = true
23-
konfigkoll_types = { version = "0.2.3", path = "../konfigkoll_types" }
23+
konfigkoll_types = { version = "0.2.4", path = "../konfigkoll_types" }
2424
libc.workspace = true
2525
nix = { workspace = true, features = ["user"] }
26-
paketkoll_types = { version = "0.2.1", path = "../paketkoll_types" }
27-
paketkoll_utils = { version = "0.1.6", path = "../paketkoll_utils" }
26+
paketkoll_types = { version = "0.2.2", path = "../paketkoll_types" }
27+
paketkoll_utils = { version = "0.1.7", path = "../paketkoll_utils" }
2828
paketkoll_workspace_hack = { version = "0.1", path = "../paketkoll_workspace_hack" }
2929
parking_lot.workspace = true
3030
rayon.workspace = true

crates/konfigkoll_hwinfo/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ edited).
88
For a possibly more edited message focused on the binary please see the github
99
releases.
1010

11+
## [0.1.7] - 2024-12-16
12+
13+
### 🚀 Features
14+
15+
- Prepare workspace hack with cargo-hakari
16+
1117
## [0.1.6] - 2024-09-20
1218

1319
### ⚙️ Other stuff

crates/konfigkoll_hwinfo/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "MPL-2.0"
77
name = "konfigkoll_hwinfo"
88
repository = "https://github.com/VorpalBlade/paketkoll"
99
rust-version = "1.80.0"
10-
version = "0.1.6"
10+
version = "0.1.7"
1111

1212
[features]
1313
rune = ["dep:rune"]

crates/konfigkoll_script/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,21 @@ edited).
88
For a possibly more edited message focused on the binary please see the github
99
releases.
1010

11+
## [0.1.8] - 2024-12-16
12+
13+
### 🚀 Features
14+
15+
- Add support for locked users in sysusers parser
16+
- Prepare workspace hack with cargo-hakari
17+
18+
### 🐛 Bug fixes
19+
20+
- Fix new clippy warnings on Rust 1.82
21+
22+
### 🩺 Diagnostics & output formatting
23+
24+
- Improve parse errors from sysusers
25+
1126
## [0.1.7] - 2024-09-20
1227

1328
### ⚙️ Other stuff

crates/konfigkoll_script/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "MPL-2.0"
77
name = "konfigkoll_script"
88
repository = "https://github.com/VorpalBlade/paketkoll"
99
rust-version = "1.80.0"
10-
version = "0.1.7"
10+
version = "0.1.8"
1111

1212
[dependencies]
1313
ahash.workspace = true
@@ -19,12 +19,12 @@ eyre.workspace = true
1919
glob.workspace = true
2020
globset.workspace = true
2121
itertools.workspace = true
22-
konfigkoll_hwinfo = { version = "0.1.6", path = "../konfigkoll_hwinfo", features = [
22+
konfigkoll_hwinfo = { version = "0.1.7", path = "../konfigkoll_hwinfo", features = [
2323
"rune",
2424
] }
25-
konfigkoll_types = { version = "0.2.3", path = "../konfigkoll_types" }
26-
konfigkoll_utils = { version = "0.1.6", path = "../konfigkoll_utils" }
27-
paketkoll_types = { version = "0.2.1", path = "../paketkoll_types" }
25+
konfigkoll_types = { version = "0.2.4", path = "../konfigkoll_types" }
26+
konfigkoll_utils = { version = "0.1.7", path = "../konfigkoll_utils" }
27+
paketkoll_types = { version = "0.2.2", path = "../paketkoll_types" }
2828
paketkoll_workspace_hack = { version = "0.1", path = "../paketkoll_workspace_hack" }
2929
parking_lot.workspace = true
3030
regex.workspace = true

crates/konfigkoll_types/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ edited).
88
For a possibly more edited message focused on the binary please see the github
99
releases.
1010

11+
## [0.2.4] - 2024-12-16
12+
13+
### 🚀 Features
14+
15+
- Prepare workspace hack with cargo-hakari
16+
1117
## [0.2.3] - 2024-09-20
1218

1319
### ⚙️ Other stuff

0 commit comments

Comments
 (0)