Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
VorpalBlade committed Sep 6, 2024
1 parent e611cf4 commit e2581d7
Show file tree
Hide file tree
Showing 28 changed files with 227 additions and 52 deletions.
26 changes: 13 additions & 13 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions crates/konfigkoll/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,27 @@ edited).
For a possibly more edited message focused on the binary please see the github
releases.

## [0.1.7] - 2024-09-06

### 🩺 Diagnostics & output formatting

- Change span log levels
- Switch from anyhow to color-eyre for better (and prettier) error messages
- Improve formatting of Rune runtime errors
- Add spans to async functions exposed to Rune (should help get better errors with color-eyre)
- Switch to custom error wrapper to better traverse the Rune callstacks
- Limit file data that we store inline leading to less verbose debug logs

### 🚜 Refactoring

- Switch to native eyre traits instead of anyhow compatibility (for Options)
- Switch to native eyre traits instead of anyhow compatibility
- Use anyhow::Result type alias consistently

### ⚙️ Other stuff

- Use nightly import grouping in rustfmt

## [0.1.6] - 2024-08-17

### 🚀 Features
Expand Down
16 changes: 8 additions & 8 deletions crates/konfigkoll/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ license = "MPL-2.0"
name = "konfigkoll"
repository = "https://github.com/VorpalBlade/paketkoll"
rust-version = "1.80.0"
version = "0.1.6"
version = "0.1.7"

[[bin]]
name = "konfigkoll"
Expand Down Expand Up @@ -46,14 +46,14 @@ directories.workspace = true
either.workspace = true
eyre.workspace = true
itertools.workspace = true
konfigkoll_core = { version = "0.4.0", path = "../konfigkoll_core" }
konfigkoll_script = { version = "0.1.4", path = "../konfigkoll_script" }
konfigkoll_types = { version = "0.2.0", path = "../konfigkoll_types" }
konfigkoll_utils = { version = "0.1.3", path = "../konfigkoll_utils" }
konfigkoll_core = { version = "0.4.1", path = "../konfigkoll_core" }
konfigkoll_script = { version = "0.1.5", path = "../konfigkoll_script" }
konfigkoll_types = { version = "0.2.1", path = "../konfigkoll_types" }
konfigkoll_utils = { version = "0.1.4", path = "../konfigkoll_utils" }
ouroboros.workspace = true
paketkoll_cache = { version = "0.2.3", path = "../paketkoll_cache" }
paketkoll_core = { version = "0.5.4", path = "../paketkoll_core" }
paketkoll_types = { version = "0.1.4", path = "../paketkoll_types" }
paketkoll_cache = { version = "0.2.4", path = "../paketkoll_cache" }
paketkoll_core = { version = "0.5.5", path = "../paketkoll_core" }
paketkoll_types = { version = "0.2.0", path = "../paketkoll_types" }
rayon.workspace = true
rune = { workspace = true, features = ["cli"] }
tokio.workspace = true
Expand Down
17 changes: 17 additions & 0 deletions crates/konfigkoll_core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,23 @@ edited).
For a possibly more edited message focused on the binary please see the github
releases.

## [0.4.1] - 2024-09-06

### 🩺 Diagnostics & output formatting

- Switch from anyhow to color-eyre for better (and prettier) error messages
- Limit file data that we store inline leading to less verbose debug logs

### 🚜 Refactoring

- Switch to native eyre traits instead of anyhow compatibility (for Options)
- Switch to native eyre traits instead of anyhow compatibility
- Use anyhow::Result type alias consistently

### ⚙️ Other stuff

- Use nightly import grouping in rustfmt

## [0.4.0] - 2024-08-17

### 🚀 Features
Expand Down
8 changes: 4 additions & 4 deletions crates/konfigkoll_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ license = "MPL-2.0"
name = "konfigkoll_core"
repository = "https://github.com/VorpalBlade/paketkoll"
rust-version = "1.80.0"
version = "0.4.0"
version = "0.4.1"

[dependencies]
ahash.workspace = true
Expand All @@ -17,11 +17,11 @@ duct.workspace = true
either.workspace = true
eyre.workspace = true
itertools.workspace = true
konfigkoll_types = { version = "0.2.0", path = "../konfigkoll_types" }
konfigkoll_types = { version = "0.2.1", path = "../konfigkoll_types" }
libc.workspace = true
nix = { workspace = true, features = ["user"] }
paketkoll_types = { version = "0.1.4", path = "../paketkoll_types" }
paketkoll_utils = { version = "0.1.4", path = "../paketkoll_utils" }
paketkoll_types = { version = "0.2.0", path = "../paketkoll_types" }
paketkoll_utils = { version = "0.1.5", path = "../paketkoll_utils" }
parking_lot.workspace = true
rayon.workspace = true
smallvec.workspace = true
Expand Down
10 changes: 10 additions & 0 deletions crates/konfigkoll_hwinfo/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@ edited).
For a possibly more edited message focused on the binary please see the github
releases.

## [0.1.4] - 2024-09-06

### 🩺 Diagnostics & output formatting

- Switch from anyhow to color-eyre for better (and prettier) error messages

### ⚙️ Other stuff

- Use nightly import grouping in rustfmt

## [0.1.3] - 2024-08-17

### ⚙️ Other stuff
Expand Down
2 changes: 1 addition & 1 deletion crates/konfigkoll_hwinfo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ license = "MPL-2.0"
name = "konfigkoll_hwinfo"
repository = "https://github.com/VorpalBlade/paketkoll"
rust-version = "1.80.0"
version = "0.1.3"
version = "0.1.4"

[features]
rune = ["dep:rune"]
Expand Down
17 changes: 17 additions & 0 deletions crates/konfigkoll_script/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,23 @@ edited).
For a possibly more edited message focused on the binary please see the github
releases.

## [0.1.5] - 2024-09-06

### 🩺 Diagnostics & output formatting

- Improve formatting of Rune runtime errors
- Add spans to async functions exposed to Rune (should help get better errors with color-eyre)
- Switch from anyhow to color-eyre for better (and prettier) error messages
- Switch to custom error wrapper to better traverse the Rune callstacks

### 🚜 Refactoring

- Switch to native eyre traits instead of anyhow compatibility

### ⚙️ Other stuff

- Use nightly import grouping in rustfmt

## [0.1.4] - 2024-08-17

### 🚀 Features
Expand Down
10 changes: 5 additions & 5 deletions crates/konfigkoll_script/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ license = "MPL-2.0"
name = "konfigkoll_script"
repository = "https://github.com/VorpalBlade/paketkoll"
rust-version = "1.80.0"
version = "0.1.4"
version = "0.1.5"

[dependencies]
ahash.workspace = true
Expand All @@ -16,12 +16,12 @@ eyre.workspace = true
glob.workspace = true
globset.workspace = true
itertools.workspace = true
konfigkoll_hwinfo = { version = "0.1.3", path = "../konfigkoll_hwinfo", features = [
konfigkoll_hwinfo = { version = "0.1.4", path = "../konfigkoll_hwinfo", features = [
"rune",
] }
konfigkoll_types = { version = "0.2.0", path = "../konfigkoll_types" }
konfigkoll_utils = { version = "0.1.3", path = "../konfigkoll_utils" }
paketkoll_types = { version = "0.1.4", path = "../paketkoll_types" }
konfigkoll_types = { version = "0.2.1", path = "../konfigkoll_types" }
konfigkoll_utils = { version = "0.1.4", path = "../konfigkoll_utils" }
paketkoll_types = { version = "0.2.0", path = "../paketkoll_types" }
parking_lot.workspace = true
regex.workspace = true
rune-modules.workspace = true
Expand Down
14 changes: 14 additions & 0 deletions crates/konfigkoll_types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,20 @@ edited).
For a possibly more edited message focused on the binary please see the github
releases.

## [0.2.1] - 2024-09-06

### 🩺 Diagnostics & output formatting

- Switch from anyhow to color-eyre for better (and prettier) error messages

### 🚜 Refactoring

- Switch to native eyre traits instead of anyhow compatibility

### ⚙️ Other stuff

- Use nightly import grouping in rustfmt

## [0.2.0] - 2024-08-17

### 🚀 Features
Expand Down
6 changes: 3 additions & 3 deletions crates/konfigkoll_types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ license = "MPL-2.0"
name = "konfigkoll_types"
repository = "https://github.com/VorpalBlade/paketkoll"
rust-version = "1.80.0"
version = "0.2.0"
version = "0.2.1"

[dependencies]
camino.workspace = true
compact_str.workspace = true
either.workspace = true
eyre.workspace = true
paketkoll_types = { version = "0.1.4", path = "../paketkoll_types" }
paketkoll_utils = { version = "0.1.4", path = "../paketkoll_utils" }
paketkoll_types = { version = "0.2.0", path = "../paketkoll_types" }
paketkoll_utils = { version = "0.1.5", path = "../paketkoll_utils" }
strum.workspace = true

[lints]
Expand Down
6 changes: 6 additions & 0 deletions crates/konfigkoll_utils/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ edited).
For a possibly more edited message focused on the binary please see the github
releases.

## [0.1.4] - 2024-09-06

### ⚙️ Other stuff

- Use nightly import grouping in rustfmt

## [0.1.3] - 2024-08-17

### ⚙️ Other stuff
Expand Down
2 changes: 1 addition & 1 deletion crates/konfigkoll_utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ license = "MPL-2.0"
name = "konfigkoll_utils"
repository = "https://github.com/VorpalBlade/paketkoll"
rust-version = "1.80.0"
version = "0.1.3"
version = "0.1.4"

[dependencies]
camino.workspace = true
Expand Down
10 changes: 10 additions & 0 deletions crates/mtree2/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@ edited).
For a possibly more edited message focused on the binary please see the github
releases.

## [0.6.6] - 2024-09-06

### ⚡ Performance improvements

- Arch doesn't use device nodes at all in the mtree files, outline the data

### ⚙️ Other stuff

- Use nightly import grouping in rustfmt

## [0.6.5] - 2024-08-17

### ⚙️ Other stuff
Expand Down
2 changes: 1 addition & 1 deletion crates/mtree2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "Apache-2.0 OR MIT"
name = "mtree2"
readme = "README.md"
repository = "https://github.com/VorpalBlade/paketkoll"
version = "0.6.5"
version = "0.6.6"

[dependencies]
bitflags.workspace = true
Expand Down
Loading

0 comments on commit e2581d7

Please sign in to comment.