Skip to content

Commit 9604783

Browse files
committed
Release gix-date v0.4.3, gix-hash v0.10.3, gix-features v0.26.5, gix-actor v0.17.2, gix-glob v0.5.5, gix-path v0.7.2, gix-quote v0.4.2, gix-attributes v0.8.3, gix-validate v0.7.3, gix-object v0.26.2, gix-ref v0.24.1, gix-config v0.16.2, gix-command v0.2.4, gix-url v0.13.3, gix-credentials v0.9.2, gix-discover v0.13.1, gix-index v0.12.4, gix-mailmap v0.9.3, gix-pack v0.30.3, gix-packetline v0.14.3, gix-transport v0.25.6, gix-protocol v0.26.4, gix-revision v0.10.4, gix-refspec v0.7.3, gix-worktree v0.12.3, gix v0.36.1
1 parent 135d317 commit 9604783

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+883
-236
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ cache-efficiency-debug = ["gix-features/cache-efficiency-debug"]
8585
anyhow = "1.0.42"
8686

8787
gitoxide-core = { version = "^0.24.0", path = "gitoxide-core" }
88-
gix-features = { version = "^0.26.4", path = "gix-features" }
89-
gix = { version = "^0.36.0", path = "gix", default-features = false }
88+
gix-features = { version = "^0.26.5", path = "gix-features" }
89+
gix = { version = "^0.36.1", path = "gix", default-features = false }
9090
time = "0.3.19"
9191

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

cargo-smart-release/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ test = false
2424
cache-efficiency-debug = ["gix/cache-efficiency-debug"]
2525

2626
[dependencies]
27-
gix = { version = "^0.36.0", path = "../gix", default-features = false, features = ["max-performance-safe"] }
27+
gix = { version = "^0.36.1", path = "../gix", default-features = false, features = ["max-performance-safe"] }
2828
anyhow = "1.0.42"
2929
clap = { version = "4.1.0", features = ["derive", "cargo"] }
3030
env_logger = { version = "0.10.0", default-features = false, features = ["humantime", "auto-color"] }

gitoxide-core/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ serde1 = ["gix-commitgraph/serde1", "gix/serde1", "serde_json", "serde", "bytesi
3636

3737
[dependencies]
3838
# deselect everything else (like "performance") as this should be controllable by the parent application.
39-
gix = { version = "^0.36.0", path = "../gix", default-features = false }
40-
gix-pack-for-configuration-only = { package = "gix-pack", version = "^0.30.2", path = "../gix-pack", default-features = false, features = ["pack-cache-lru-dynamic", "pack-cache-lru-static"] }
41-
gix-transport-configuration-only = { package = "gix-transport", version = "^0.25.5", path = "../gix-transport", default-features = false }
39+
gix = { version = "^0.36.1", path = "../gix", default-features = false }
40+
gix-pack-for-configuration-only = { package = "gix-pack", version = "^0.30.3", path = "../gix-pack", default-features = false, features = ["pack-cache-lru-dynamic", "pack-cache-lru-static"] }
41+
gix-transport-configuration-only = { package = "gix-transport", version = "^0.25.6", path = "../gix-transport", default-features = false }
4242
gix-commitgraph = { version = "^0.13.0", path = "../gix-commitgraph" }
4343
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
4444
anyhow = "1.0.42"
@@ -56,7 +56,7 @@ futures-io = { version = "0.3.16", optional = true }
5656
blocking = { version = "1.0.2", optional = true }
5757

5858
# for 'organize' functionality
59-
gix-url = { version = "^0.13.2", path = "../gix-url", optional = true }
59+
gix-url = { version = "^0.13.3", path = "../gix-url", optional = true }
6060
jwalk = { version = "0.8.0", optional = true }
6161

6262
# for 'hours'

gix-actor/CHANGELOG.md

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ 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.17.2 (2023-02-17)
8+
## 0.17.2 (2023-02-20)
99

1010
### Bug Fixes
1111

@@ -15,6 +15,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515
Use the crates with the `gix-*` prefix instead.
1616

1717
If you were using `git-repository`, then `gix` is its substitute.
18+
- <csr-id-135d317065aae87af302beb6c26bb6ca8e30b6aa/> compatibility with `bstr` v1.3, use `*.as_bytes()` instead of `.as_ref()`.
19+
`as_ref()` relies on a known target type which isn't always present. However, once
20+
there is only one implementation, that's no problem, but when that changes compilation
21+
fails due to ambiguity.
22+
23+
### Commit Statistics
24+
25+
<csr-read-only-do-not-edit/>
26+
27+
- 1 commit contributed to the release.
28+
- 3 days passed between releases.
29+
- 1 commit was understood as [conventional](https://www.conventionalcommits.org).
30+
- 0 issues like '(#ID)' were seen in commit messages
31+
32+
### Commit Details
33+
34+
<csr-read-only-do-not-edit/>
35+
36+
<details><summary>view details</summary>
37+
38+
* **Uncategorized**
39+
- compatibility with `bstr` v1.3, use `*.as_bytes()` instead of `.as_ref()`. ([`135d317`](https://github.com/Byron/gitoxide/commit/135d317065aae87af302beb6c26bb6ca8e30b6aa))
40+
</details>
1841

1942
## 0.17.1 (2023-02-17)
2043

@@ -85,7 +108,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
85108

86109
<csr-read-only-do-not-edit/>
87110

88-
- 205 commits contributed to the release over the course of 602 calendar days.
111+
- 206 commits contributed to the release over the course of 602 calendar days.
89112
- 17 commits were understood as [conventional](https://www.conventionalcommits.org).
90113
- 12 unique issues were worked on: [#198](https://github.com/Byron/gitoxide/issues/198), [#222](https://github.com/Byron/gitoxide/issues/222), [#250](https://github.com/Byron/gitoxide/issues/250), [#301](https://github.com/Byron/gitoxide/issues/301), [#329](https://github.com/Byron/gitoxide/issues/329), [#331](https://github.com/Byron/gitoxide/issues/331), [#364](https://github.com/Byron/gitoxide/issues/364), [#366](https://github.com/Byron/gitoxide/issues/366), [#427](https://github.com/Byron/gitoxide/issues/427), [#450](https://github.com/Byron/gitoxide/issues/450), [#470](https://github.com/Byron/gitoxide/issues/470), [#691](https://github.com/Byron/gitoxide/issues/691)
91114

@@ -134,6 +157,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
134157
* **[#691](https://github.com/Byron/gitoxide/issues/691)**
135158
- set `rust-version` to 1.64 ([`55066ce`](https://github.com/Byron/gitoxide/commit/55066ce5fd71209abb5d84da2998b903504584bb))
136159
* **Uncategorized**
160+
- Release gix-features v0.26.4, gix-actor v0.17.1, gix-glob v0.5.3, gix-path v0.7.1, gix-quote v0.4.1, gix-attributes v0.8.2, gix-config-value v0.10.1, gix-tempfile v3.0.2, gix-lock v3.0.2, gix-validate v0.7.2, gix-object v0.26.1, gix-ref v0.24.0, gix-sec v0.6.2, gix-config v0.16.1, gix-command v0.2.3, gix-prompt v0.3.2, gix-url v0.13.2, gix-credentials v0.9.1, gix-diff v0.26.1, gix-discover v0.13.0, gix-hashtable v0.1.1, gix-bitmap v0.2.1, gix-traverse v0.22.1, gix-index v0.12.3, gix-mailmap v0.9.2, gix-chunk v0.4.1, gix-pack v0.30.2, gix-odb v0.40.2, gix-packetline v0.14.2, gix-transport v0.25.4, gix-protocol v0.26.3, gix-revision v0.10.3, gix-refspec v0.7.2, gix-worktree v0.12.2, gix v0.36.0 ([`6efd0d3`](https://github.com/Byron/gitoxide/commit/6efd0d31fbeca31ab7319aa2ac97bb31dc4ce055))
137161
- Release gix-date v0.4.2, gix-hash v0.10.2, gix-features v0.26.4, gix-actor v0.17.1, gix-glob v0.5.3, gix-path v0.7.1, gix-quote v0.4.1, gix-attributes v0.8.2, gix-config-value v0.10.1, gix-tempfile v3.0.2, gix-lock v3.0.2, gix-validate v0.7.2, gix-object v0.26.1, gix-ref v0.24.0, gix-sec v0.6.2, gix-config v0.16.1, gix-command v0.2.3, gix-prompt v0.3.2, gix-url v0.13.2, gix-credentials v0.9.1, gix-diff v0.26.1, gix-discover v0.13.0, gix-hashtable v0.1.1, gix-bitmap v0.2.1, gix-traverse v0.22.1, gix-index v0.12.3, gix-mailmap v0.9.2, gix-chunk v0.4.1, gix-pack v0.30.2, gix-odb v0.40.2, gix-packetline v0.14.2, gix-transport v0.25.4, gix-protocol v0.26.3, gix-revision v0.10.3, gix-refspec v0.7.2, gix-worktree v0.12.2, gix v0.36.0 ([`6ccc88a`](https://github.com/Byron/gitoxide/commit/6ccc88a8e4a56973b1a358cf72dc012ee3c75d56))
138162
- Merge branch 'rename-crates' into inform-about-gix-rename ([`c9275b9`](https://github.com/Byron/gitoxide/commit/c9275b99ea43949306d93775d9d78c98fb86cfb1))
139163
- rename `git-testtools` to `gix-testtools` ([`b65c33d`](https://github.com/Byron/gitoxide/commit/b65c33d256cfed65d11adeff41132e3e58754089))

gix-actor/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gix-actor"
3-
version = "0.17.1"
3+
version = "0.17.2"
44
description = "A way to identify git actors"
55
authors = ["Sebastian Thiel <[email protected]>"]
66
repository = "https://github.com/Byron/gitoxide"
@@ -17,8 +17,8 @@ doctest = false
1717
serde1 = ["serde", "bstr/serde", "gix-date/serde1"]
1818

1919
[dependencies]
20-
gix-features = { version = "^0.26.4", path = "../gix-features", optional = true }
21-
gix-date = { version = "^0.4.2", path = "../gix-date" }
20+
gix-features = { version = "^0.26.5", path = "../gix-features", optional = true }
21+
gix-date = { version = "^0.4.3", path = "../gix-date" }
2222

2323
quick-error = "2.0.0"
2424
btoi = "0.4.2"

0 commit comments

Comments
 (0)