Skip to content

Commit

Permalink
chore(release): Prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
VorpalBlade committed Jul 29, 2024
1 parent d933aa8 commit bed737f
Show file tree
Hide file tree
Showing 24 changed files with 161 additions and 52 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.

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

## [0.1.4] - 2024-07-29

### 🚀 Features

- Save prefix (for when you wrap cmds in a context object)
- Try systemd lookup with /lib if /usr/lib fails, to support Debian

### 🐛 Bug fixes

- Fix race condition on package manager
- Fix parsing of extended status for Debian
- Fix typo in save output

### ⚡ Performance improvements

- Improve mtime time parsing (relevant to Arch Linux)
- Improve mtree parsing performance (relevant to Arch Linux)

### ⚙️ Other stuff

- Better error messages
- Make disabled package manager quieter and adjust other log levels

## [0.1.3] - 2024-07-27

### 🚀 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.79.0"
version = "0.1.3"
version = "0.1.4"

[[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.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" }
konfigkoll_core = { version = "0.3.0", path = "../konfigkoll_core" }
konfigkoll_script = { version = "0.1.2", path = "../konfigkoll_script" }
konfigkoll_types = { version = "0.1.2", path = "../konfigkoll_types" }
konfigkoll_utils = { version = "0.1.1", path = "../konfigkoll_utils" }
ouroboros.workspace = true
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" }
paketkoll_cache = { version = "0.2.1", path = "../paketkoll_cache" }
paketkoll_core = { version = "0.5.2", path = "../paketkoll_core" }
paketkoll_types = { version = "0.1.2", path = "../paketkoll_types" }
rayon.workspace = true
rune = { workspace = true, features = ["cli"] }
tokio = { workspace = true, features = [
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.3.0] - 2024-07-29

### 🚀 Features

- Save prefix (for when you wrap cmds in a context object)

### 🐛 Bug fixes

- Fix typo in save

## [0.2.0] - 2024-07-27

### 🚜 Refactoring
Expand Down
10 changes: 5 additions & 5 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.2.0"
version = "0.3.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.1", path = "../konfigkoll_types" }
konfigkoll_utils = { version = "0.1.0", path = "../konfigkoll_utils" }
konfigkoll_types = { version = "0.1.2", path = "../konfigkoll_types" }
konfigkoll_utils = { version = "0.1.1", path = "../konfigkoll_utils" }
libc.workspace = true
nix = { workspace = true, features = ["user"] }
paketkoll_types = { version = "0.1.1", path = "../paketkoll_types" }
paketkoll_utils = { version = "0.1.1", path = "../paketkoll_utils" }
paketkoll_types = { version = "0.1.2", path = "../paketkoll_types" }
paketkoll_utils = { version = "0.1.2", path = "../paketkoll_utils" }
parking_lot.workspace = true
rayon.workspace = true
regex.workspace = true
Expand Down
13 changes: 13 additions & 0 deletions crates/konfigkoll_script/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.1.2] - 2024-07-29

### 🚀 Features

- Save prefix (for when you wrap cmds in a context object)
- Try systemd lookup with /lib if /usr/lib fails, to support Debian

### ⚙️ Other stuff

- Better error message
- Fix build and better errors
- Make disabled package manager quieter and adjust other log levels

## [0.1.1] - 2024-07-27

### 🚜 Refactoring
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.1"
version = "0.1.2"

[features]
# Default features
Expand All @@ -27,14 +27,14 @@ itertools.workspace = true
konfigkoll_hwinfo = { version = "0.1.1", path = "../konfigkoll_hwinfo", features = [
"rune",
] }
konfigkoll_types = { version = "0.1.1", path = "../konfigkoll_types" }
konfigkoll_utils = { version = "0.1.0", path = "../konfigkoll_utils" }
konfigkoll_types = { version = "0.1.2", path = "../konfigkoll_types" }
konfigkoll_utils = { version = "0.1.1", path = "../konfigkoll_utils" }
nix = { workspace = true, features = ["user"] }
paketkoll_core = { version = "0.5.1", path = "../paketkoll_core" }
paketkoll_types = { version = "0.1.1", path = "../paketkoll_types", features = [
paketkoll_core = { version = "0.5.2", path = "../paketkoll_core" }
paketkoll_types = { version = "0.1.2", path = "../paketkoll_types", features = [
"serde",
] }
paketkoll_utils = { version = "0.1.1", path = "../paketkoll_utils" }
paketkoll_utils = { version = "0.1.2", path = "../paketkoll_utils" }
parking_lot.workspace = true
regex.workspace = true
rune-modules = { workspace = true, 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,7 +5,7 @@ license = "MPL-2.0"
name = "konfigkoll_types"
repository = "https://github.com/VorpalBlade/paketkoll"
rust-version = "1.79.0"
version = "0.1.1"
version = "0.1.2"

[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.1", path = "../paketkoll_types" }
paketkoll_utils = { version = "0.1.1", path = "../paketkoll_utils" }
paketkoll_types = { version = "0.1.2", path = "../paketkoll_types" }
paketkoll_utils = { version = "0.1.2", path = "../paketkoll_utils" }
strum.workspace = true

[lints]
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.79.0"
version = "0.1.0"
version = "0.1.1"

[dependencies]
camino.workspace = true
Expand Down
11 changes: 11 additions & 0 deletions crates/mtree2/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.6.4] - 2024-07-29

### ⚡ Performance improvements

- Improve time parsing
- Improve mtree parsing performance

### ⚙️ Other stuff

- Fix formatting

## [0.6.3] - 2024-07-27

### 📚 Documentation
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.3"
version = "0.6.4"

[dependencies]
bitflags.workspace = true
Expand Down
11 changes: 11 additions & 0 deletions crates/paketkoll/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.3.2] - 2024-07-29

### 🐛 Bug fixes

- Fix parsing of extended status for Debian

### ⚡ Performance improvements

- Improve mtime time parsing (relevant to Arch Linux)
- Improve mtree parsing performance (relevant to Arch Linux)

## [0.3.1] - 2024-07-27

### 📚 Documentation
Expand Down
6 changes: 3 additions & 3 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.79.0"
version = "0.3.1"
version = "0.3.2"

[features]
# Default features
Expand Down Expand Up @@ -38,8 +38,8 @@ compact_str.workspace = true
env_logger.workspace = true
log.workspace = true
os_info.workspace = true
paketkoll_core = { version = "0.5.1", path = "../paketkoll_core" }
paketkoll_types = { version = "0.1.1", path = "../paketkoll_types" }
paketkoll_core = { version = "0.5.2", path = "../paketkoll_core" }
paketkoll_types = { version = "0.1.2", path = "../paketkoll_types" }
proc-exit.workspace = true
rayon.workspace = true
serde = { workspace = true, optional = true, features = ["serde_derive"] }
Expand Down
6 changes: 6 additions & 0 deletions crates/paketkoll_cache/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.2.1] - 2024-07-29

### 🚀 Features

- Try systemd lookup with /lib if /usr/lib fails, to support Debian

## [0.2.0] - 2024-07-27

### 🚀 Features
Expand Down
4 changes: 2 additions & 2 deletions crates/paketkoll_cache/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MPL-2.0"
name = "paketkoll_cache"
repository = "https://github.com/VorpalBlade/paketkoll"
rust-version = "1.79.0"
version = "0.2.0"
version = "0.2.1"

[dependencies]
ahash.workspace = true
Expand All @@ -18,7 +18,7 @@ cached = { workspace = true, features = [
], default-features = false }
compact_str.workspace = true
dashmap.workspace = true
paketkoll_types = { version = "0.1.1", path = "../paketkoll_types", features = [
paketkoll_types = { version = "0.1.2", path = "../paketkoll_types", features = [
"serde",
] }
rayon.workspace = true
Expand Down
Loading

0 comments on commit bed737f

Please sign in to comment.