Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
VorpalBlade authored Sep 19, 2024
1 parent 35dc585 commit 6ce0b3f
Show file tree
Hide file tree
Showing 28 changed files with 193 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.

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

## [0.1.8] - 2024-09-19

### 🐛 Bug fixes

- Fix handling of comment instructions in apply

### 🩺 Diagnostics & output formatting

- Make ID update less chatty (info isn't usually relevant)
- Improve error message when failing to delete non-empty directory

### 🧪 Testing

- Add integration tests based on containers

### ⚙️ Other stuff

- Fix and enable various clippy lints
- Change to some functions to const
- Enable clippy::ignored_unit_patterns
- Add some must_use as suggested by clippy
- Enable clippy::manual_let_else
- Fix some cases of clippy::trivially-copy-pass-by-ref
- Enable clippy::use_self

## [0.1.7] - 2024-09-06

### 🩺 Diagnostics & output formatting
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.7"
version = "0.1.8"

[[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.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" }
konfigkoll_core = { version = "0.4.2", path = "../konfigkoll_core" }
konfigkoll_script = { version = "0.1.6", path = "../konfigkoll_script" }
konfigkoll_types = { version = "0.2.2", path = "../konfigkoll_types" }
konfigkoll_utils = { version = "0.1.5", path = "../konfigkoll_utils" }
ouroboros.workspace = true
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" }
paketkoll_cache = { version = "0.2.5", path = "../paketkoll_cache" }
paketkoll_core = { version = "0.5.6", path = "../paketkoll_core" }
paketkoll_types = { version = "0.2.1", path = "../paketkoll_types" }
rayon.workspace = true
rune = { workspace = true, features = ["cli"] }
tokio.workspace = true
Expand Down
20 changes: 20 additions & 0 deletions crates/konfigkoll_core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,26 @@ edited).
For a possibly more edited message focused on the binary please see the github
releases.

## [0.4.2] - 2024-09-19

### 🐛 Bug fixes

- Fix handling of comment instructions in apply

### 🩺 Diagnostics & output formatting

- Improve error message when failing to delete non-empty directory

### 🧪 Testing

- Add integration tests based on containers

### ⚙️ Other stuff

- Enable clippy::ignored_unit_patterns
- Fix and enable various clippy lints
- Enable clippy::use_self

## [0.4.1] - 2024-09-06

### 🩺 Diagnostics & output formatting
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.1"
version = "0.4.2"

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

## [0.1.5] - 2024-09-19

### ⚙️ Other stuff

- Enable clippy::ignored_unit_patterns
- Fix and enable various clippy lints

## [0.1.4] - 2024-09-06

### 🩺 Diagnostics & output formatting
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.4"
version = "0.1.5"

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

## [0.1.6] - 2024-09-19

### 🩺 Diagnostics & output formatting

- Make ID update less chatty (info isn't usually relevant)

### ⚙️ Other stuff

- Change to some functions to const
- Enable clippy::ignored_unit_patterns
- Add some must_use as suggested by clippy
- Enable clippy::manual_let_else
- Fix and enable various clippy lints
- Fix some cases of clippy::trivially-copy-pass-by-ref
- Enable clippy::use_self

## [0.1.5] - 2024-09-06

### 🩺 Diagnostics & output formatting
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.5"
version = "0.1.6"

[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.4", path = "../konfigkoll_hwinfo", features = [
konfigkoll_hwinfo = { version = "0.1.5", path = "../konfigkoll_hwinfo", features = [
"rune",
] }
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" }
konfigkoll_types = { version = "0.2.2", path = "../konfigkoll_types" }
konfigkoll_utils = { version = "0.1.5", path = "../konfigkoll_utils" }
paketkoll_types = { version = "0.2.1", path = "../paketkoll_types" }
parking_lot.workspace = true
regex.workspace = true
rune-modules.workspace = true
Expand Down
7 changes: 7 additions & 0 deletions crates/konfigkoll_types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ edited).
For a possibly more edited message focused on the binary please see the github
releases.

## [0.2.2] - 2024-09-19

### ⚙️ Other stuff

- Change to some functions to const
- Enable clippy::use_self

## [0.2.1] - 2024-09-06

### 🩺 Diagnostics & output formatting
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.1"
version = "0.2.2"

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

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

## [0.1.5] - 2024-09-19

### ⚙️ Other stuff

- Fix and enable various clippy lints
- Enable clippy::use_self

## [0.1.4] - 2024-09-06

### ⚙️ 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.4"
version = "0.1.5"

[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.7] - 2024-09-19

### ⚙️ Other stuff

- Change to some functions to const
- Enable clippy::manual_let_else
- Fix and enable various clippy lints
- Fix some cases of clippy::trivially-copy-pass-by-ref
- Enable clippy::use_self

## [0.6.6] - 2024-09-06

### ⚡ Performance improvements
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.6"
version = "0.6.7"

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

## [0.3.6] - 2024-09-19

### ⚙️ Other stuff

- Fix some cases of clippy::trivially-copy-pass-by-ref
- Enable clippy::use_self

## [0.3.5] - 2024-09-06

### 🩺 Diagnostics & output formatting
Expand Down
Loading

0 comments on commit 6ce0b3f

Please sign in to comment.