Skip to content

Commit 18330fc

Browse files
committed
chore(release): Prepare release
1 parent 5a23204 commit 18330fc

File tree

28 files changed

+264
-50
lines changed

28 files changed

+264
-50
lines changed

Cargo.lock

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

11+
## [0.1.3] - 2024-07-27
12+
13+
### 🚀 Features
14+
15+
- Disk cache & archive-based file backend for Debian
16+
17+
### 🚜 Refactoring
18+
19+
- Make `konfigkoll_script` independent of `konfigkoll_core`
20+
- Restructure `paketkoll_cache`
21+
22+
### 📚 Documentation
23+
24+
- Development docs & misc updates
25+
- Spell check code comments
26+
27+
### ⚙️ Other stuff
28+
29+
- Format strings using nightly rustfmt
30+
- Run rustfmt with nightly `imports_granularity = "Item"`
31+
- Clean up trailing ws
32+
- Reformat Cargo.toml files & imports
33+
- Use RustRover Optimise imports
34+
1135
## [0.1.2] - 2024-07-25
1236

1337
### 🐛 Bug fixes

crates/konfigkoll/Cargo.toml

Lines changed: 7 additions & 7 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.79.0"
15-
version = "0.1.2"
15+
version = "0.1.3"
1616

1717
[[bin]]
1818
name = "konfigkoll"
@@ -45,14 +45,14 @@ dashmap.workspace = true
4545
directories.workspace = true
4646
either.workspace = true
4747
itertools.workspace = true
48-
konfigkoll_core = { version = "0.1.0", path = "../konfigkoll_core" }
49-
konfigkoll_script = { version = "0.1.0", path = "../konfigkoll_script" }
50-
konfigkoll_types = { version = "0.1.0", path = "../konfigkoll_types" }
48+
konfigkoll_core = { version = "0.2.0", path = "../konfigkoll_core" }
49+
konfigkoll_script = { version = "0.1.1", path = "../konfigkoll_script" }
50+
konfigkoll_types = { version = "0.1.1", path = "../konfigkoll_types" }
5151
konfigkoll_utils = { version = "0.1.0", path = "../konfigkoll_utils" }
5252
ouroboros.workspace = true
53-
paketkoll_cache = { version = "0.1.0", path = "../paketkoll_cache" }
54-
paketkoll_core = { version = "0.5.0", path = "../paketkoll_core" }
55-
paketkoll_types = { version = "0.1.0", path = "../paketkoll_types" }
53+
paketkoll_cache = { version = "0.2.0", path = "../paketkoll_cache" }
54+
paketkoll_core = { version = "0.5.1", path = "../paketkoll_core" }
55+
paketkoll_types = { version = "0.1.1", path = "../paketkoll_types" }
5656
rayon.workspace = true
5757
rune = { workspace = true, features = ["cli"] }
5858
tokio = { workspace = true, features = [

crates/konfigkoll_core/CHANGELOG.md

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

11+
## [0.2.0] - 2024-07-27
12+
13+
### 🚜 Refactoring
14+
15+
- Make `konfigkoll_script` independent of `konfigkoll_core`
16+
17+
### 📚 Documentation
18+
19+
- Spell check code comments
20+
21+
### ⚙️ Other stuff
22+
23+
- Format strings using nightly rustfmt
24+
- Run rustfmt with nightly `imports_granularity = "Item"`
25+
- Clean up unneeded paths for imported items
26+
- Use RustRover Optimise imports
27+
1128
## [0.1.0] - 2024-07-25
1229

1330
This is the initial release of the `konfigkoll_core` crate.

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.79.0"
8-
version = "0.1.0"
8+
version = "0.2.0"
99

1010
[dependencies]
1111
ahash.workspace = true
@@ -17,12 +17,12 @@ console.workspace = true
1717
duct.workspace = true
1818
either.workspace = true
1919
itertools.workspace = true
20-
konfigkoll_types = { version = "0.1.0", path = "../konfigkoll_types" }
20+
konfigkoll_types = { version = "0.1.1", path = "../konfigkoll_types" }
2121
konfigkoll_utils = { version = "0.1.0", path = "../konfigkoll_utils" }
2222
libc.workspace = true
2323
nix = { workspace = true, features = ["user"] }
24-
paketkoll_types = { version = "0.1.0", path = "../paketkoll_types" }
25-
paketkoll_utils = { version = "0.1.0", path = "../paketkoll_utils" }
24+
paketkoll_types = { version = "0.1.1", path = "../paketkoll_types" }
25+
paketkoll_utils = { version = "0.1.1", path = "../paketkoll_utils" }
2626
parking_lot.workspace = true
2727
rayon.workspace = true
2828
regex.workspace = true

crates/konfigkoll_hwinfo/CHANGELOG.md

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

11+
## [0.1.1] - 2024-07-27
12+
13+
### 📚 Documentation
14+
15+
- Spell check code comments
16+
17+
### ⚙️ Other stuff
18+
19+
- Run rustfmt with nightly `imports_granularity = "Item"`
20+
- Use RustRover Optimise imports
21+
1122
## [0.1.0] - 2024-07-25
1223

1324
This is the initial release of the `konfigkoll_hwinfo` crate.

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.79.0"
8-
version = "0.1.0"
8+
version = "0.1.1"
99

1010
[dependencies]
1111
ahash.workspace = true

crates/konfigkoll_script/CHANGELOG.md

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

11+
## [0.1.1] - 2024-07-27
12+
13+
### 🚜 Refactoring
14+
15+
- Make `konfigkoll_script` independent of `konfigkoll_core`
16+
17+
### 📚 Documentation
18+
19+
- Spell check code comments
20+
21+
### ⚙️ Other stuff
22+
23+
- Format strings using nightly rustfmt
24+
- Run rustfmt with nightly `imports_granularity = "Item"`
25+
- Clean up trailing ws
26+
- Reformat Cargo.toml files & imports
27+
- Clean up unneeded paths for imported items
28+
- Use RustRover Optimise imports
29+
1130
## [0.1.0] - 2024-07-25
1231

1332
This is the initial release of the `konfigkoll_script` crate.

crates/konfigkoll_script/Cargo.toml

Lines changed: 6 additions & 6 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.79.0"
8-
version = "0.1.0"
8+
version = "0.1.1"
99

1010
[features]
1111
# Default features
@@ -24,17 +24,17 @@ camino.workspace = true
2424
compact_str.workspace = true
2525
glob.workspace = true
2626
itertools.workspace = true
27-
konfigkoll_hwinfo = { version = "0.1.0", path = "../konfigkoll_hwinfo", features = [
27+
konfigkoll_hwinfo = { version = "0.1.1", path = "../konfigkoll_hwinfo", features = [
2828
"rune",
2929
] }
30-
konfigkoll_types = { version = "0.1.0", path = "../konfigkoll_types" }
30+
konfigkoll_types = { version = "0.1.1", path = "../konfigkoll_types" }
3131
konfigkoll_utils = { version = "0.1.0", path = "../konfigkoll_utils" }
3232
nix = { workspace = true, features = ["user"] }
33-
paketkoll_core = { version = "0.5.0", path = "../paketkoll_core" }
34-
paketkoll_types = { version = "0.1.0", path = "../paketkoll_types", features = [
33+
paketkoll_core = { version = "0.5.1", path = "../paketkoll_core" }
34+
paketkoll_types = { version = "0.1.1", path = "../paketkoll_types", features = [
3535
"serde",
3636
] }
37-
paketkoll_utils = { version = "0.1.0", path = "../paketkoll_utils" }
37+
paketkoll_utils = { version = "0.1.1", path = "../paketkoll_utils" }
3838
parking_lot.workspace = true
3939
regex.workspace = true
4040
rune-modules = { workspace = true, features = [

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.1.1] - 2024-07-27
12+
13+
### ⚙️ Other stuff
14+
15+
- Run rustfmt with nightly `imports_granularity = "Item"`
16+
- Use RustRover Optimise imports
17+
1118
## [0.1.0] - 2024-07-25
1219

1320
This is the initial release of the `konfigkoll_types` crate.

0 commit comments

Comments
 (0)