Skip to content

Commit 9457f43

Browse files
committed
chore: release
1 parent 004471a commit 9457f43

File tree

28 files changed

+240
-52
lines changed

28 files changed

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

11+
## [0.1.7] - 2024-09-06
12+
13+
### 🩺 Diagnostics & output formatting
14+
15+
- Change span log levels
16+
- Switch from anyhow to color-eyre for better (and prettier) error messages
17+
- Improve formatting of Rune runtime errors
18+
- Add spans to async functions exposed to Rune (should help get better errors with color-eyre)
19+
- Switch to custom error wrapper to better traverse the Rune callstacks
20+
- Limit file data that we store inline leading to less verbose debug logs
21+
22+
### 🚜 Refactoring
23+
24+
- Switch to native eyre traits instead of anyhow compatibility (for Options)
25+
- Switch to native eyre traits instead of anyhow compatibility
26+
- Use anyhow::Result type alias consistently
27+
28+
### ⚙️ Other stuff
29+
30+
- Apply auto fixable clippy lints
31+
- Use nightly import grouping in rustfmt
32+
1133
## [0.1.6] - 2024-08-17
1234

1335
### 🚀 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.6"
15+
version = "0.1.7"
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.0", path = "../konfigkoll_core" }
50-
konfigkoll_script = { version = "0.1.4", path = "../konfigkoll_script" }
51-
konfigkoll_types = { version = "0.2.0", path = "../konfigkoll_types" }
52-
konfigkoll_utils = { version = "0.1.3", path = "../konfigkoll_utils" }
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" }
5353
ouroboros.workspace = true
54-
paketkoll_cache = { version = "0.2.3", path = "../paketkoll_cache" }
55-
paketkoll_core = { version = "0.5.4", path = "../paketkoll_core" }
56-
paketkoll_types = { version = "0.1.4", path = "../paketkoll_types" }
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" }
5757
rayon.workspace = true
5858
rune = { workspace = true, features = ["cli"] }
5959
tokio.workspace = true

crates/konfigkoll_core/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.4.1] - 2024-09-06
12+
13+
### 🩺 Diagnostics & output formatting
14+
15+
- Switch from anyhow to color-eyre for better (and prettier) error messages
16+
- Limit file data that we store inline leading to less verbose debug logs
17+
18+
### 🚜 Refactoring
19+
20+
- Switch to native eyre traits instead of anyhow compatibility (for Options)
21+
- Switch to native eyre traits instead of anyhow compatibility
22+
- Use anyhow::Result type alias consistently
23+
24+
### ⚙️ Other stuff
25+
26+
- Apply auto fixable clippy lints
27+
- Use nightly import grouping in rustfmt
28+
1129
## [0.4.0] - 2024-08-17
1230

1331
### 🚀 Features

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.0"
8+
version = "0.4.1"
99

1010
[dependencies]
1111
ahash.workspace = true
@@ -17,11 +17,11 @@ duct.workspace = true
1717
either.workspace = true
1818
eyre.workspace = true
1919
itertools.workspace = true
20-
konfigkoll_types = { version = "0.2.0", path = "../konfigkoll_types" }
20+
konfigkoll_types = { version = "0.2.1", path = "../konfigkoll_types" }
2121
libc.workspace = true
2222
nix = { workspace = true, features = ["user"] }
23-
paketkoll_types = { version = "0.1.4", path = "../paketkoll_types" }
24-
paketkoll_utils = { version = "0.1.4", path = "../paketkoll_utils" }
23+
paketkoll_types = { version = "0.2.0", path = "../paketkoll_types" }
24+
paketkoll_utils = { version = "0.1.5", path = "../paketkoll_utils" }
2525
parking_lot.workspace = true
2626
rayon.workspace = true
2727
smallvec.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.4] - 2024-09-06
12+
13+
### 🩺 Diagnostics & output formatting
14+
15+
- Switch from anyhow to color-eyre for better (and prettier) error messages
16+
17+
### ⚙️ Other stuff
18+
19+
- Apply auto fixable clippy lints
20+
- Use nightly import grouping in rustfmt
21+
1122
## [0.1.3] - 2024-08-17
1223

1324
### ⚙️ Other stuff

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.3"
8+
version = "0.1.4"
99

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

crates/konfigkoll_script/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.5] - 2024-09-06
12+
13+
### 🩺 Diagnostics & output formatting
14+
15+
- Improve formatting of Rune runtime errors
16+
- Add spans to async functions exposed to Rune (should help get better errors with color-eyre)
17+
- Switch from anyhow to color-eyre for better (and prettier) error messages
18+
- Switch to custom error wrapper to better traverse the Rune callstacks
19+
20+
### 🚜 Refactoring
21+
22+
- Switch to native eyre traits instead of anyhow compatibility
23+
24+
### ⚙️ Other stuff
25+
26+
- Apply auto fixable clippy lints
27+
- Use nightly import grouping in rustfmt
28+
1129
## [0.1.4] - 2024-08-17
1230

1331
### 🚀 Features

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.4"
8+
version = "0.1.5"
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.3", path = "../konfigkoll_hwinfo", features = [
19+
konfigkoll_hwinfo = { version = "0.1.4", path = "../konfigkoll_hwinfo", features = [
2020
"rune",
2121
] }
22-
konfigkoll_types = { version = "0.2.0", path = "../konfigkoll_types" }
23-
konfigkoll_utils = { version = "0.1.3", path = "../konfigkoll_utils" }
24-
paketkoll_types = { version = "0.1.4", path = "../paketkoll_types" }
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" }
2525
parking_lot.workspace = true
2626
regex.workspace = true
2727
rune-modules.workspace = true

crates/konfigkoll_types/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.2.1] - 2024-09-06
12+
13+
### 🩺 Diagnostics & output formatting
14+
15+
- Switch from anyhow to color-eyre for better (and prettier) error messages
16+
17+
### 🚜 Refactoring
18+
19+
- Switch to native eyre traits instead of anyhow compatibility
20+
21+
### ⚙️ Other stuff
22+
23+
- Apply auto fixable clippy lints
24+
- Use nightly import grouping in rustfmt
25+
1126
## [0.2.0] - 2024-08-17
1227

1328
### 🚀 Features

0 commit comments

Comments
 (0)