Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
VorpalBlade committed Aug 17, 2024
1 parent efd8a61 commit 2c3a7b8
Show file tree
Hide file tree
Showing 12 changed files with 55 additions and 16 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

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

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

## [0.1.7] - 2024-08-17

### 🩺 Diagnostics & output formatting

- 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

- Use anyhow::Result type alias consistently

## [0.1.6] - 2024-08-17

### 🚀 Features
Expand Down
8 changes: 4 additions & 4 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 @@ -45,13 +45,13 @@ dashmap.workspace = true
directories.workspace = true
either.workspace = true
itertools.workspace = true
konfigkoll_core = { version = "0.4.0", path = "../konfigkoll_core" }
konfigkoll_script = { version = "0.1.4", path = "../konfigkoll_script" }
konfigkoll_core = { version = "0.4.1", path = "../konfigkoll_core" }
konfigkoll_script = { version = "0.1.5", path = "../konfigkoll_script" }
konfigkoll_types = { version = "0.2.0", path = "../konfigkoll_types" }
konfigkoll_utils = { version = "0.1.3", 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_core = { version = "0.5.5", path = "../paketkoll_core" }
paketkoll_types = { version = "0.1.4", path = "../paketkoll_types" }
rayon.workspace = true
rune = { workspace = true, features = ["cli"] }
Expand Down
10 changes: 10 additions & 0 deletions crates/konfigkoll_core/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.4.1] - 2024-08-17

### 🩺 Diagnostics & output formatting

- Limit file data that we store inline leading to less verbose debug logs

### 🚜 Refactoring

- Use anyhow::Result type alias consistently

## [0.4.0] - 2024-08-17

### 🚀 Features
Expand Down
2 changes: 1 addition & 1 deletion 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 Down
6 changes: 6 additions & 0 deletions crates/konfigkoll_script/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.5] - 2024-08-17

### 🩺 Diagnostics & output formatting

- Switch to custom error wrapper to better traverse the Rune callstacks

## [0.1.4] - 2024-08-17

### 🚀 Features
Expand Down
2 changes: 1 addition & 1 deletion 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 Down
6 changes: 6 additions & 0 deletions crates/paketkoll/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.3.5] - 2024-08-17

### 🚜 Refactoring

- Use anyhow::Result type alias consistently

## [0.3.4] - 2024-08-17

### 🚀 Features
Expand Down
4 changes: 2 additions & 2 deletions crates/paketkoll/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ name = "paketkoll"
readme = "README.md"
repository = "https://github.com/VorpalBlade/paketkoll"
rust-version = "1.80.0"
version = "0.3.4"
version = "0.3.5"

[features]
# Default features
Expand All @@ -35,7 +35,7 @@ anyhow.workspace = true
clap.workspace = true
compact_str.workspace = true
os_info.workspace = true
paketkoll_core = { version = "0.5.4", path = "../paketkoll_core" }
paketkoll_core = { version = "0.5.5", path = "../paketkoll_core" }
paketkoll_types = { version = "0.1.4", path = "../paketkoll_types" }
proc-exit.workspace = true
rayon.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/paketkoll_core/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.5.5] - 2024-08-17

### 🚜 Refactoring

- Use anyhow::Result type alias consistently

## [0.5.4] - 2024-08-17

### 🚀 Features
Expand Down
2 changes: 1 addition & 1 deletion crates/paketkoll_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MPL-2.0"
name = "paketkoll_core"
repository = "https://github.com/VorpalBlade/paketkoll"
rust-version = "1.80.0"
version = "0.5.4"
version = "0.5.5"

[package.metadata.docs.rs]
default-target = "x86_64-unknown-linux-gnu"
Expand Down
4 changes: 2 additions & 2 deletions crates/xtask/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ camino.workspace = true
clap.workspace = true
clap_complete.workspace = true
clap_mangen.workspace = true
konfigkoll = { version = "0.1.6", path = "../konfigkoll" }
paketkoll = { version = "0.3.4", path = "../paketkoll" }
konfigkoll = { version = "0.1.7", path = "../konfigkoll" }
paketkoll = { version = "0.3.5", path = "../paketkoll" }
tracing-subscriber.workspace = true
tracing.workspace = true

Expand Down

0 comments on commit 2c3a7b8

Please sign in to comment.