Skip to content

Commit 109f434

Browse files
committed
Release git-features v0.26.4
1 parent a3bd14a commit 109f434

File tree

18 files changed

+63
-36
lines changed

18 files changed

+63
-36
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ cache-efficiency-debug = ["git-features/cache-efficiency-debug"]
8585
anyhow = "1.0.42"
8686

8787
gitoxide-core = { version = "^0.24.0", path = "gitoxide-core" }
88-
git-features = { version = "^0.26.3", path = "git-features" }
88+
git-features = { version = "^0.26.4", path = "git-features" }
8989
gix = { version = "^0.35.0", path = "gix", default-features = false }
9090

9191
clap = { version = "4.1.1", features = ["derive", "cargo"] }

git-actor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ doctest = false
1717
serde1 = ["serde", "bstr/serde", "git-date/serde1"]
1818

1919
[dependencies]
20-
git-features = { version = "^0.26.3", path = "../git-features", optional = true }
20+
git-features = { version = "^0.26.4", path = "../git-features", optional = true }
2121
git-date = { version = "^0.4.2", path = "../git-date" }
2222

2323
quick-error = "2.0.0"

git-attributes/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ doctest = false
1717
serde1 = ["serde", "bstr/serde", "git-glob/serde1", "compact_str/serde"]
1818

1919
[dependencies]
20-
git-features = { version = "^0.26.3", path = "../git-features" }
20+
git-features = { version = "^0.26.4", path = "../git-features" }
2121
git-path = { version = "^0.7.1", path = "../git-path" }
2222
git-quote = { version = "^0.4.1", path = "../git-quote" }
2323
git-glob = { version = "^0.5.3", path = "../git-glob" }

git-commitgraph/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ doctest = false
1818
serde1 = ["serde", "git-hash/serde1", "bstr/serde"]
1919

2020
[dependencies]
21-
git-features = { version = "^0.26.3", path = "../git-features", features = ["rustsha1"] }
21+
git-features = { version = "^0.26.4", path = "../git-features", features = ["rustsha1"] }
2222
git-hash = { version = "^0.10.2", path = "../git-hash" }
2323
git-chunk = { version = "^0.4.1", path = "../git-chunk" }
2424

git-config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ autotests = false
1717
serde1 = ["serde", "bstr/serde", "git-sec/serde1", "git-ref/serde1", "git-glob/serde1", "git-config-value/serde1"]
1818

1919
[dependencies]
20-
git-features = { version = "^0.26.3", path = "../git-features"}
20+
git-features = { version = "^0.26.4", path = "../git-features"}
2121
git-config-value = { version = "^0.10.1", path = "../git-config-value" }
2222
git-path = { version = "^0.7.1", path = "../git-path" }
2323
git-sec = { version = "^0.6.2", path = "../git-sec" }

git-features/CHANGELOG.md

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,32 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.26.4 (2023-02-14)
9+
10+
### New Features
11+
12+
- <csr-id-a3bd14a7753716e7ad67cd56d24eee1fa099a6fd/> re-export `prodash::progress::(Task|Value)` directly under `progress`
13+
This is in addition to the `progress` re-export which allows everything
14+
but yields less optimal import paths.
15+
16+
### Commit Statistics
17+
18+
<csr-read-only-do-not-edit/>
19+
20+
- 1 commit contributed to the release.
21+
- 1 commit was understood as [conventional](https://www.conventionalcommits.org).
22+
- 0 issues like '(#ID)' were seen in commit messages
23+
24+
### Commit Details
25+
26+
<csr-read-only-do-not-edit/>
27+
28+
<details><summary>view details</summary>
29+
30+
* **Uncategorized**
31+
- re-export `prodash::progress::(Task|Value)` directly under `progress` ([`a3bd14a`](https://github.com/Byron/gitoxide/commit/a3bd14a7753716e7ad67cd56d24eee1fa099a6fd))
32+
</details>
33+
834
## 0.26.3 (2023-02-14)
935

1036
### New Features
@@ -16,7 +42,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1642

1743
<csr-read-only-do-not-edit/>
1844

19-
- 1 commit contributed to the release.
45+
- 2 commits contributed to the release.
2046
- 4 days passed between releases.
2147
- 1 commit was understood as [conventional](https://www.conventionalcommits.org).
2248
- 0 issues like '(#ID)' were seen in commit messages
@@ -28,6 +54,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2854
<details><summary>view details</summary>
2955

3056
* **Uncategorized**
57+
- Release git-features v0.26.3 ([`1ecfb7f`](https://github.com/Byron/gitoxide/commit/1ecfb7f8bfb24432690d8f31367488f2e59a642a))
3158
- re-export `prodash` in `progress` module. ([`4260572`](https://github.com/Byron/gitoxide/commit/426057247a80821b3da22b4ae5d67bda89ce0631))
3259
</details>
3360

git-features/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "git-features"
33
description = "A crate to integrate various capabilities using compile-time feature flags"
44
repository = "https://github.com/Byron/gitoxide"
5-
version = "0.26.3"
5+
version = "0.26.4"
66
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
77
license = "MIT/Apache-2.0"
88
edition = "2018"

git-index/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ test = true
2020
serde1 = ["serde", "smallvec/serde", "git-hash/serde1"]
2121

2222
[dependencies]
23-
git-features = { version = "^0.26.3", path = "../git-features", features = ["rustsha1", "progress"] }
23+
git-features = { version = "^0.26.4", path = "../git-features", features = ["rustsha1", "progress"] }
2424
git-hash = { version = "^0.10.2", path = "../git-hash" }
2525
git-bitmap = { version = "^0.2.1", path = "../git-bitmap" }
2626
git-object = { version = "^0.26.1", path = "../git-object" }

git-object/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ serde1 = ["serde", "bstr/serde", "smallvec/serde", "git-hash/serde1", "git-actor
2222
verbose-object-parsing-errors = ["nom/std"]
2323

2424
[dependencies]
25-
git-features = { version = "^0.26.3", path = "../git-features", features = ["rustsha1"] }
25+
git-features = { version = "^0.26.4", path = "../git-features", features = ["rustsha1"] }
2626
git-hash = { version = "^0.10.2", path = "../git-hash" }
2727
git-validate = { version = "^0.7.2", path = "../git-validate" }
2828
git-actor = { version = "^0.17.1", path = "../git-actor" }

git-odb/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ path = "tests/odb-single-threaded.rs"
2828
required-features = []
2929

3030
[dependencies]
31-
git-features = { version = "^0.26.3", path = "../git-features", features = ["rustsha1", "walkdir", "zlib", "crc32" ] }
31+
git-features = { version = "^0.26.4", path = "../git-features", features = ["rustsha1", "walkdir", "zlib", "crc32" ] }
3232
git-hash = { version = "^0.10.2", path = "../git-hash" }
3333
git-path = { version = "^0.7.1", path = "../git-path" }
3434
git-quote = { version = "^0.4.1", path = "../git-quote" }

git-pack/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ object-cache-dynamic = ["clru"]
2626
serde1 = ["serde", "git-object/serde1"]
2727

2828
[dependencies]
29-
git-features = { version = "^0.26.3", path = "../git-features", features = ["crc32", "rustsha1", "progress", "zlib"] }
29+
git-features = { version = "^0.26.4", path = "../git-features", features = ["crc32", "rustsha1", "progress", "zlib"] }
3030
git-path = { version = "^0.7.1", path = "../git-path" }
3131
git-hash = { version = "^0.10.2", path = "../git-hash" }
3232
git-chunk = { version = "^0.4.1", path = "../git-chunk" }

git-protocol/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ path = "tests/async-protocol.rs"
4040
required-features = ["async-client"]
4141

4242
[dependencies]
43-
git-features = { version = "^0.26.3", path = "../git-features", features = ["progress"] }
43+
git-features = { version = "^0.26.4", path = "../git-features", features = ["progress"] }
4444
git-transport = { version = "^0.25.4", path = "../git-transport" }
4545
git-hash = { version = "^0.10.2", path = "../git-hash" }
4646
git-credentials = { version = "^0.9.1", path = "../git-credentials" }

git-ref/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ test = true
1919
serde1 = ["serde", "git-hash/serde1", "git-actor/serde1", "git-object/serde1"]
2020

2121
[dependencies]
22-
git-features = { version = "^0.26.3", path = "../git-features", features = ["walkdir"]}
22+
git-features = { version = "^0.26.4", path = "../git-features", features = ["walkdir"]}
2323
git-path = { version = "^0.7.1", path = "../git-path" }
2424
git-hash = { version = "^0.10.2", path = "../git-hash" }
2525
git-object = { version = "^0.26.1", path = "../git-object" }

git-transport/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ required-features = ["async-client"]
5454

5555
[dependencies]
5656
git-command = { version = "^0.2.3", path = "../git-command" }
57-
git-features = { version = "^0.26.3", path = "../git-features" }
57+
git-features = { version = "^0.26.4", path = "../git-features" }
5858
git-url = { version = "^0.13.2", path = "../git-url" }
5959
git-sec = { version = "^0.6.2", path = "../git-sec" }
6060
git-packetline = { version = "^0.14.2", path = "../git-packetline" }

git-url/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ doctest = false
1717
serde1 = ["serde", "bstr/serde"]
1818

1919
[dependencies]
20-
git-features = { version = "^0.26.3", path = "../git-features" }
20+
git-features = { version = "^0.26.4", path = "../git-features" }
2121
git-path = { version = "^0.7.1", path = "../git-path" }
2222

2323
serde = { version = "1.0.114", optional = true, default-features = false, features = ["std", "derive"]}

git-worktree/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ git-object = { version = "^0.26.1", path = "../git-object" }
3636
git-glob = { version = "^0.5.3", path = "../git-glob" }
3737
git-path = { version = "^0.7.1", path = "../git-path" }
3838
git-attributes = { version = "^0.8.2", path = "../git-attributes" }
39-
git-features = { version = "^0.26.3", path = "../git-features" }
39+
git-features = { version = "^0.26.4", path = "../git-features" }
4040

4141
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"]}
4242

gix/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ git-protocol = { version = "^0.26.3", path = "../git-protocol", optional = true
114114
git-transport = { version = "^0.25.4", path = "../git-transport", optional = true }
115115
git-diff = { version = "^0.26.1", path = "../git-diff" }
116116
git-mailmap = { version = "^0.9.2", path = "../git-mailmap" }
117-
git-features = { version = "^0.26.3", path = "../git-features", features = ["progress", "once_cell"] }
117+
git-features = { version = "^0.26.4", path = "../git-features", features = ["progress", "once_cell"] }
118118

119119
git-attributes = { version = "^0.8.2", path = "../git-attributes" }
120120
git-glob = { version = "^0.5.3", path = "../git-glob" }

0 commit comments

Comments
 (0)