Skip to content

Commit 3a7f386

Browse files
committed
chore: release
1 parent a8ebf1b commit 3a7f386

File tree

22 files changed

+102
-34
lines changed

22 files changed

+102
-34
lines changed

Cargo.lock

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/konfigkoll/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,16 @@ edited).
88
For a possibly more edited message focused on the binary please see the github
99
releases.
1010

11+
## [0.1.9] - 2024-09-20
12+
13+
### 🚀 Features
14+
15+
- Improve diff view when restoring to package manager state (fixes [#91](https://github.com/VorpalBlade/paketkoll/pull/91))
16+
17+
### ⚙️ Other stuff
18+
19+
- Add crates.io package keywords & categories
20+
1121
## [0.1.8] - 2024-09-19
1222

1323
### 🐛 Bug fixes

crates/konfigkoll/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ license = "MPL-2.0"
1212
name = "konfigkoll"
1313
repository = "https://github.com/VorpalBlade/paketkoll"
1414
rust-version = "1.80.0"
15-
version = "0.1.8"
15+
version = "0.1.9"
1616

1717
[[bin]]
1818
name = "konfigkoll"
@@ -46,13 +46,13 @@ directories.workspace = true
4646
either.workspace = true
4747
eyre.workspace = true
4848
itertools.workspace = true
49-
konfigkoll_core = { version = "0.4.2", path = "../konfigkoll_core" }
50-
konfigkoll_script = { version = "0.1.6", path = "../konfigkoll_script" }
51-
konfigkoll_types = { version = "0.2.2", path = "../konfigkoll_types" }
52-
konfigkoll_utils = { version = "0.1.5", path = "../konfigkoll_utils" }
49+
konfigkoll_core = { version = "0.5.0", path = "../konfigkoll_core" }
50+
konfigkoll_script = { version = "0.1.7", path = "../konfigkoll_script" }
51+
konfigkoll_types = { version = "0.2.3", path = "../konfigkoll_types" }
52+
konfigkoll_utils = { version = "0.1.6", path = "../konfigkoll_utils" }
5353
ouroboros.workspace = true
54-
paketkoll_cache = { version = "0.2.5", path = "../paketkoll_cache" }
55-
paketkoll_core = { version = "0.5.6", path = "../paketkoll_core" }
54+
paketkoll_cache = { version = "0.2.6", path = "../paketkoll_cache" }
55+
paketkoll_core = { version = "0.5.7", path = "../paketkoll_core" }
5656
paketkoll_types = { version = "0.2.1", path = "../paketkoll_types" }
5757
rayon.workspace = true
5858
rune = { workspace = true, features = ["cli"] }

crates/konfigkoll_core/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,16 @@ edited).
88
For a possibly more edited message focused on the binary please see the github
99
releases.
1010

11+
## [0.5.0] - 2024-09-20
12+
13+
### 🚀 Features
14+
15+
- Improve diff view when restoring to package manager state (fixes [#91](https://github.com/VorpalBlade/paketkoll/pull/91))
16+
17+
### ⚙️ Other stuff
18+
19+
- Add crates.io package keywords & categories
20+
1121
## [0.4.2] - 2024-09-19
1222

1323
### 🐛 Bug fixes

crates/konfigkoll_core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "MPL-2.0"
77
name = "konfigkoll_core"
88
repository = "https://github.com/VorpalBlade/paketkoll"
99
rust-version = "1.80.0"
10-
version = "0.4.2"
10+
version = "0.5.0"
1111

1212
[dependencies]
1313
ahash.workspace = true
@@ -20,7 +20,7 @@ duct.workspace = true
2020
either.workspace = true
2121
eyre.workspace = true
2222
itertools.workspace = true
23-
konfigkoll_types = { version = "0.2.2", path = "../konfigkoll_types" }
23+
konfigkoll_types = { version = "0.2.3", path = "../konfigkoll_types" }
2424
libc.workspace = true
2525
nix = { workspace = true, features = ["user"] }
2626
paketkoll_types = { version = "0.2.1", path = "../paketkoll_types" }

crates/konfigkoll_hwinfo/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ edited).
88
For a possibly more edited message focused on the binary please see the github
99
releases.
1010

11+
## [0.1.6] - 2024-09-20
12+
13+
### ⚙️ Other stuff
14+
15+
- Add crates.io package keywords & categories
16+
1117
## [0.1.5] - 2024-09-19
1218

1319
### ⚙️ Other stuff

crates/konfigkoll_hwinfo/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "MPL-2.0"
77
name = "konfigkoll_hwinfo"
88
repository = "https://github.com/VorpalBlade/paketkoll"
99
rust-version = "1.80.0"
10-
version = "0.1.5"
10+
version = "0.1.6"
1111

1212
[features]
1313
rune = ["dep:rune"]

crates/konfigkoll_script/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ edited).
88
For a possibly more edited message focused on the binary please see the github
99
releases.
1010

11+
## [0.1.7] - 2024-09-20
12+
13+
### ⚙️ Other stuff
14+
15+
- Add crates.io package keywords & categories
16+
1117
## [0.1.6] - 2024-09-19
1218

1319
### 🩺 Diagnostics & output formatting

crates/konfigkoll_script/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "MPL-2.0"
77
name = "konfigkoll_script"
88
repository = "https://github.com/VorpalBlade/paketkoll"
99
rust-version = "1.80.0"
10-
version = "0.1.6"
10+
version = "0.1.7"
1111

1212
[dependencies]
1313
ahash.workspace = true
@@ -18,11 +18,11 @@ eyre.workspace = true
1818
glob.workspace = true
1919
globset.workspace = true
2020
itertools.workspace = true
21-
konfigkoll_hwinfo = { version = "0.1.5", path = "../konfigkoll_hwinfo", features = [
21+
konfigkoll_hwinfo = { version = "0.1.6", path = "../konfigkoll_hwinfo", features = [
2222
"rune",
2323
] }
24-
konfigkoll_types = { version = "0.2.2", path = "../konfigkoll_types" }
25-
konfigkoll_utils = { version = "0.1.5", path = "../konfigkoll_utils" }
24+
konfigkoll_types = { version = "0.2.3", path = "../konfigkoll_types" }
25+
konfigkoll_utils = { version = "0.1.6", path = "../konfigkoll_utils" }
2626
paketkoll_types = { version = "0.2.1", path = "../paketkoll_types" }
2727
parking_lot.workspace = true
2828
regex.workspace = true

crates/konfigkoll_types/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ edited).
88
For a possibly more edited message focused on the binary please see the github
99
releases.
1010

11+
## [0.2.3] - 2024-09-20
12+
13+
### ⚙️ Other stuff
14+
15+
- Add crates.io package keywords & categories
16+
1117
## [0.2.2] - 2024-09-19
1218

1319
### ⚙️ Other stuff

0 commit comments

Comments
 (0)