Skip to content

Commit 6ce0b3f

Browse files
authored
chore: release
1 parent 35dc585 commit 6ce0b3f

File tree

28 files changed

+193
-52
lines changed

28 files changed

+193
-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: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,31 @@ edited).
88
For a possibly more edited message focused on the binary please see the github
99
releases.
1010

11+
## [0.1.8] - 2024-09-19
12+
13+
### 🐛 Bug fixes
14+
15+
- Fix handling of comment instructions in apply
16+
17+
### 🩺 Diagnostics & output formatting
18+
19+
- Make ID update less chatty (info isn't usually relevant)
20+
- Improve error message when failing to delete non-empty directory
21+
22+
### 🧪 Testing
23+
24+
- Add integration tests based on containers
25+
26+
### ⚙️ Other stuff
27+
28+
- Fix and enable various clippy lints
29+
- Change to some functions to const
30+
- Enable clippy::ignored_unit_patterns
31+
- Add some must_use as suggested by clippy
32+
- Enable clippy::manual_let_else
33+
- Fix some cases of clippy::trivially-copy-pass-by-ref
34+
- Enable clippy::use_self
35+
1136
## [0.1.7] - 2024-09-06
1237

1338
### 🩺 Diagnostics & output formatting

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.7"
15+
version = "0.1.8"
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.4.1", path = "../konfigkoll_core" }
50-
konfigkoll_script = { version = "0.1.5", path = "../konfigkoll_script" }
51-
konfigkoll_types = { version = "0.2.1", path = "../konfigkoll_types" }
52-
konfigkoll_utils = { version = "0.1.4", path = "../konfigkoll_utils" }
49+
konfigkoll_core = { version = "0.4.2", path = "../konfigkoll_core" }
50+
konfigkoll_script = { version = "0.1.6", path = "../konfigkoll_script" }
51+
konfigkoll_types = { version = "0.2.2", path = "../konfigkoll_types" }
52+
konfigkoll_utils = { version = "0.1.5", path = "../konfigkoll_utils" }
5353
ouroboros.workspace = true
54-
paketkoll_cache = { version = "0.2.4", path = "../paketkoll_cache" }
55-
paketkoll_core = { version = "0.5.5", path = "../paketkoll_core" }
56-
paketkoll_types = { version = "0.2.0", path = "../paketkoll_types" }
54+
paketkoll_cache = { version = "0.2.5", path = "../paketkoll_cache" }
55+
paketkoll_core = { version = "0.5.6", path = "../paketkoll_core" }
56+
paketkoll_types = { version = "0.2.1", path = "../paketkoll_types" }
5757
rayon.workspace = true
5858
rune = { workspace = true, features = ["cli"] }
5959
tokio.workspace = true

crates/konfigkoll_core/CHANGELOG.md

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

11+
## [0.4.2] - 2024-09-19
12+
13+
### 🐛 Bug fixes
14+
15+
- Fix handling of comment instructions in apply
16+
17+
### 🩺 Diagnostics & output formatting
18+
19+
- Improve error message when failing to delete non-empty directory
20+
21+
### 🧪 Testing
22+
23+
- Add integration tests based on containers
24+
25+
### ⚙️ Other stuff
26+
27+
- Enable clippy::ignored_unit_patterns
28+
- Fix and enable various clippy lints
29+
- Enable clippy::use_self
30+
1131
## [0.4.1] - 2024-09-06
1232

1333
### 🩺 Diagnostics & output formatting

crates/konfigkoll_core/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ license = "MPL-2.0"
55
name = "konfigkoll_core"
66
repository = "https://github.com/VorpalBlade/paketkoll"
77
rust-version = "1.80.0"
8-
version = "0.4.1"
8+
version = "0.4.2"
99

1010
[dependencies]
1111
ahash.workspace = true
@@ -18,11 +18,11 @@ duct.workspace = true
1818
either.workspace = true
1919
eyre.workspace = true
2020
itertools.workspace = true
21-
konfigkoll_types = { version = "0.2.1", path = "../konfigkoll_types" }
21+
konfigkoll_types = { version = "0.2.2", path = "../konfigkoll_types" }
2222
libc.workspace = true
2323
nix = { workspace = true, features = ["user"] }
24-
paketkoll_types = { version = "0.2.0", path = "../paketkoll_types" }
25-
paketkoll_utils = { version = "0.1.5", path = "../paketkoll_utils" }
24+
paketkoll_types = { version = "0.2.1", path = "../paketkoll_types" }
25+
paketkoll_utils = { version = "0.1.6", path = "../paketkoll_utils" }
2626
parking_lot.workspace = true
2727
rayon.workspace = true
2828
smallvec.workspace = true

crates/konfigkoll_hwinfo/CHANGELOG.md

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

11+
## [0.1.5] - 2024-09-19
12+
13+
### ⚙️ Other stuff
14+
15+
- Enable clippy::ignored_unit_patterns
16+
- Fix and enable various clippy lints
17+
1118
## [0.1.4] - 2024-09-06
1219

1320
### 🩺 Diagnostics & output formatting

crates/konfigkoll_hwinfo/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ license = "MPL-2.0"
55
name = "konfigkoll_hwinfo"
66
repository = "https://github.com/VorpalBlade/paketkoll"
77
rust-version = "1.80.0"
8-
version = "0.1.4"
8+
version = "0.1.5"
99

1010
[features]
1111
rune = ["dep:rune"]

crates/konfigkoll_script/CHANGELOG.md

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

11+
## [0.1.6] - 2024-09-19
12+
13+
### 🩺 Diagnostics & output formatting
14+
15+
- Make ID update less chatty (info isn't usually relevant)
16+
17+
### ⚙️ Other stuff
18+
19+
- Change to some functions to const
20+
- Enable clippy::ignored_unit_patterns
21+
- Add some must_use as suggested by clippy
22+
- Enable clippy::manual_let_else
23+
- Fix and enable various clippy lints
24+
- Fix some cases of clippy::trivially-copy-pass-by-ref
25+
- Enable clippy::use_self
26+
1127
## [0.1.5] - 2024-09-06
1228

1329
### 🩺 Diagnostics & output formatting

crates/konfigkoll_script/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ license = "MPL-2.0"
55
name = "konfigkoll_script"
66
repository = "https://github.com/VorpalBlade/paketkoll"
77
rust-version = "1.80.0"
8-
version = "0.1.5"
8+
version = "0.1.6"
99

1010
[dependencies]
1111
ahash.workspace = true
@@ -16,12 +16,12 @@ eyre.workspace = true
1616
glob.workspace = true
1717
globset.workspace = true
1818
itertools.workspace = true
19-
konfigkoll_hwinfo = { version = "0.1.4", path = "../konfigkoll_hwinfo", features = [
19+
konfigkoll_hwinfo = { version = "0.1.5", path = "../konfigkoll_hwinfo", features = [
2020
"rune",
2121
] }
22-
konfigkoll_types = { version = "0.2.1", path = "../konfigkoll_types" }
23-
konfigkoll_utils = { version = "0.1.4", path = "../konfigkoll_utils" }
24-
paketkoll_types = { version = "0.2.0", path = "../paketkoll_types" }
22+
konfigkoll_types = { version = "0.2.2", path = "../konfigkoll_types" }
23+
konfigkoll_utils = { version = "0.1.5", path = "../konfigkoll_utils" }
24+
paketkoll_types = { version = "0.2.1", path = "../paketkoll_types" }
2525
parking_lot.workspace = true
2626
regex.workspace = true
2727
rune-modules.workspace = true

crates/konfigkoll_types/CHANGELOG.md

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

11+
## [0.2.2] - 2024-09-19
12+
13+
### ⚙️ Other stuff
14+
15+
- Change to some functions to const
16+
- Enable clippy::use_self
17+
1118
## [0.2.1] - 2024-09-06
1219

1320
### 🩺 Diagnostics & output formatting

0 commit comments

Comments
 (0)