Skip to content

Commit

Permalink
chore(release): Prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
VorpalBlade committed Jul 27, 2024
1 parent 5a23204 commit 18330fc
Show file tree
Hide file tree
Showing 28 changed files with 264 additions and 50 deletions.
24 changes: 12 additions & 12 deletions Cargo.lock

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

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

## [0.1.3] - 2024-07-27

### 🚀 Features

- Disk cache & archive-based file backend for Debian

### 🚜 Refactoring

- Make `konfigkoll_script` independent of `konfigkoll_core`
- Restructure `paketkoll_cache`

### 📚 Documentation

- Development docs & misc updates
- Spell check code comments

### ⚙️ Other stuff

- Format strings using nightly rustfmt
- Run rustfmt with nightly `imports_granularity = "Item"`
- Clean up trailing ws
- Reformat Cargo.toml files & imports
- Use RustRover Optimise imports

## [0.1.2] - 2024-07-25

### 🐛 Bug fixes
Expand Down
14 changes: 7 additions & 7 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.79.0"
version = "0.1.2"
version = "0.1.3"

[[bin]]
name = "konfigkoll"
Expand Down Expand Up @@ -45,14 +45,14 @@ dashmap.workspace = true
directories.workspace = true
either.workspace = true
itertools.workspace = true
konfigkoll_core = { version = "0.1.0", path = "../konfigkoll_core" }
konfigkoll_script = { version = "0.1.0", path = "../konfigkoll_script" }
konfigkoll_types = { version = "0.1.0", path = "../konfigkoll_types" }
konfigkoll_core = { version = "0.2.0", path = "../konfigkoll_core" }
konfigkoll_script = { version = "0.1.1", path = "../konfigkoll_script" }
konfigkoll_types = { version = "0.1.1", path = "../konfigkoll_types" }
konfigkoll_utils = { version = "0.1.0", path = "../konfigkoll_utils" }
ouroboros.workspace = true
paketkoll_cache = { version = "0.1.0", path = "../paketkoll_cache" }
paketkoll_core = { version = "0.5.0", path = "../paketkoll_core" }
paketkoll_types = { version = "0.1.0", path = "../paketkoll_types" }
paketkoll_cache = { version = "0.2.0", path = "../paketkoll_cache" }
paketkoll_core = { version = "0.5.1", path = "../paketkoll_core" }
paketkoll_types = { version = "0.1.1", path = "../paketkoll_types" }
rayon.workspace = true
rune = { workspace = true, features = ["cli"] }
tokio = { workspace = true, features = [
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.2.0] - 2024-07-27

### 🚜 Refactoring

- Make `konfigkoll_script` independent of `konfigkoll_core`

### 📚 Documentation

- Spell check code comments

### ⚙️ Other stuff

- Format strings using nightly rustfmt
- Run rustfmt with nightly `imports_granularity = "Item"`
- Clean up unneeded paths for imported items
- Use RustRover Optimise imports

## [0.1.0] - 2024-07-25

This is the initial release of the `konfigkoll_core` crate.
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.79.0"
version = "0.1.0"
version = "0.2.0"

[dependencies]
ahash.workspace = true
Expand All @@ -17,12 +17,12 @@ console.workspace = true
duct.workspace = true
either.workspace = true
itertools.workspace = true
konfigkoll_types = { version = "0.1.0", path = "../konfigkoll_types" }
konfigkoll_types = { version = "0.1.1", path = "../konfigkoll_types" }
konfigkoll_utils = { version = "0.1.0", path = "../konfigkoll_utils" }
libc.workspace = true
nix = { workspace = true, features = ["user"] }
paketkoll_types = { version = "0.1.0", path = "../paketkoll_types" }
paketkoll_utils = { version = "0.1.0", path = "../paketkoll_utils" }
paketkoll_types = { version = "0.1.1", path = "../paketkoll_types" }
paketkoll_utils = { version = "0.1.1", path = "../paketkoll_utils" }
parking_lot.workspace = true
rayon.workspace = true
regex.workspace = true
Expand Down
11 changes: 11 additions & 0 deletions crates/konfigkoll_hwinfo/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.1] - 2024-07-27

### 📚 Documentation

- Spell check code comments

### ⚙️ Other stuff

- Run rustfmt with nightly `imports_granularity = "Item"`
- Use RustRover Optimise imports

## [0.1.0] - 2024-07-25

This is the initial release of the `konfigkoll_hwinfo` crate.
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.79.0"
version = "0.1.0"
version = "0.1.1"

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

## [0.1.1] - 2024-07-27

### 🚜 Refactoring

- Make `konfigkoll_script` independent of `konfigkoll_core`

### 📚 Documentation

- Spell check code comments

### ⚙️ Other stuff

- Format strings using nightly rustfmt
- Run rustfmt with nightly `imports_granularity = "Item"`
- Clean up trailing ws
- Reformat Cargo.toml files & imports
- Clean up unneeded paths for imported items
- Use RustRover Optimise imports

## [0.1.0] - 2024-07-25

This is the initial release of the `konfigkoll_script` crate.
Expand Down
12 changes: 6 additions & 6 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.79.0"
version = "0.1.0"
version = "0.1.1"

[features]
# Default features
Expand All @@ -24,17 +24,17 @@ camino.workspace = true
compact_str.workspace = true
glob.workspace = true
itertools.workspace = true
konfigkoll_hwinfo = { version = "0.1.0", path = "../konfigkoll_hwinfo", features = [
konfigkoll_hwinfo = { version = "0.1.1", path = "../konfigkoll_hwinfo", features = [
"rune",
] }
konfigkoll_types = { version = "0.1.0", path = "../konfigkoll_types" }
konfigkoll_types = { version = "0.1.1", path = "../konfigkoll_types" }
konfigkoll_utils = { version = "0.1.0", path = "../konfigkoll_utils" }
nix = { workspace = true, features = ["user"] }
paketkoll_core = { version = "0.5.0", path = "../paketkoll_core" }
paketkoll_types = { version = "0.1.0", path = "../paketkoll_types", features = [
paketkoll_core = { version = "0.5.1", path = "../paketkoll_core" }
paketkoll_types = { version = "0.1.1", path = "../paketkoll_types", features = [
"serde",
] }
paketkoll_utils = { version = "0.1.0", path = "../paketkoll_utils" }
paketkoll_utils = { version = "0.1.1", path = "../paketkoll_utils" }
parking_lot.workspace = true
regex.workspace = true
rune-modules = { workspace = true, features = [
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.1.1] - 2024-07-27

### ⚙️ Other stuff

- Run rustfmt with nightly `imports_granularity = "Item"`
- Use RustRover Optimise imports

## [0.1.0] - 2024-07-25

This is the initial release of the `konfigkoll_types` crate.
6 changes: 3 additions & 3 deletions crates/konfigkoll_types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ license = "MPL-2.0"
name = "konfigkoll_types"
repository = "https://github.com/VorpalBlade/paketkoll"
rust-version = "1.79.0"
version = "0.1.0"
version = "0.1.1"

[dependencies]
ahash.workspace = true
Expand All @@ -14,8 +14,8 @@ bitflags.workspace = true
camino.workspace = true
compact_str.workspace = true
either.workspace = true
paketkoll_types = { version = "0.1.0", path = "../paketkoll_types" }
paketkoll_utils = { version = "0.1.0", path = "../paketkoll_utils" }
paketkoll_types = { version = "0.1.1", path = "../paketkoll_types" }
paketkoll_utils = { version = "0.1.1", path = "../paketkoll_utils" }
strum.workspace = true

[lints]
Expand Down
20 changes: 20 additions & 0 deletions crates/konfigkoll_utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Changelog

All notable changes to this project will be documented in this file.
Keep in mind that this is only updated when releases are made and the file
is generated automatically from commit messages (and may or may not be lightly
edited).

For a possibly more edited message focused on the binary please see the github
releases.

## [0.1.0] - 2024-07-27

### 🚜 Refactoring

- Make `konfigkoll_script` independent of `konfigkoll_core`

### ⚙️ Other stuff

- Run rustfmt with nightly `imports_granularity = "Item"`
- Reformat Cargo.toml files & imports
13 changes: 13 additions & 0 deletions crates/mtree2/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,19 @@ edited).
For a possibly more edited message focused on the binary please see the github
releases.

## [0.6.3] - 2024-07-27

### 📚 Documentation

- Spell check code comments

### ⚙️ Other stuff

- Run rustfmt with nightly `imports_granularity = "Item"`
- Clean up unneeded paths for imported items
- Follow naming conventions
- Use RustRover Optimise imports

## [0.6.2] - 2024-07-25

### 🚜 Refactoring
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.2"
version = "0.6.3"

[dependencies]
bitflags.workspace = true
Expand Down
Loading

0 comments on commit 18330fc

Please sign in to comment.