Skip to content

Commit 57579f1

Browse files
committed
Release gix-packetline v0.17.5, gix-transport v0.41.3, gix v0.61.1
1 parent 7018a92 commit 57579f1

File tree

9 files changed

+22
-19
lines changed

9 files changed

+22
-19
lines changed

Cargo.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ anyhow = "1.0.42"
170170

171171
gitoxide-core = { version = "^0.37.0", path = "gitoxide-core" }
172172
gix-features = { version = "^0.38.1", path = "gix-features" }
173-
gix = { version = "^0.61.0", path = "gix", default-features = false }
173+
gix = { version = "^0.61.1", path = "gix", default-features = false }
174174
time = "0.3.23"
175175

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

gitoxide-core/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ serde = ["gix/serde", "dep:serde_json", "dep:serde", "bytesize/serde"]
4747

4848
[dependencies]
4949
# deselect everything else (like "performance") as this should be controllable by the parent application.
50-
gix = { version = "^0.61.0", path = "../gix", default-features = false, features = ["blob-diff", "revision", "mailmap", "excludes", "attributes", "worktree-mutation", "credentials", "interrupt", "status", "dirwalk"] }
50+
gix = { version = "^0.61.1", path = "../gix", default-features = false, features = ["blob-diff", "revision", "mailmap", "excludes", "attributes", "worktree-mutation", "credentials", "interrupt", "status", "dirwalk"] }
5151
gix-pack-for-configuration-only = { package = "gix-pack", version = "^0.49.0", path = "../gix-pack", default-features = false, features = ["pack-cache-lru-dynamic", "pack-cache-lru-static", "generate", "streaming-input"] }
52-
gix-transport-configuration-only = { package = "gix-transport", version = "^0.41.2", path = "../gix-transport", default-features = false }
52+
gix-transport-configuration-only = { package = "gix-transport", version = "^0.41.3", path = "../gix-transport", default-features = false }
5353
gix-archive-for-configuration-only = { package = "gix-archive", version = "^0.11.0", path = "../gix-archive", optional = true, features = ["tar", "tar_gz"] }
5454
gix-status = { version = "^0.8.0", path = "../gix-status" }
5555
gix-fsck = { version = "^0.4.0", path = "../gix-fsck" }

gix-packetline/CHANGELOG.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@ 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-
## Unreleased
8+
## 0.17.5 (2024-03-22)
99

1010
A maintenance release without user-facing changes.
1111

1212
### Commit Statistics
1313

1414
<csr-read-only-do-not-edit/>
1515

16-
- 1 commit contributed to the release.
17-
- 6 days passed between releases.
16+
- 2 commits contributed to the release.
17+
- 7 days passed between releases.
1818
- 0 commits were understood as [conventional](https://www.conventionalcommits.org).
1919
- 0 issues like '(#ID)' were seen in commit messages
2020

@@ -25,6 +25,7 @@ A maintenance release without user-facing changes.
2525
<details><summary>view details</summary>
2626

2727
* **Uncategorized**
28+
- Prepare changelogs prior to release ([`7018a92`](https://github.com/Byron/gitoxide/commit/7018a928a405ba0534442f0b538d58f520145376))
2829
- Fix CI ([`a4af4cb`](https://github.com/Byron/gitoxide/commit/a4af4cb8b47c4b1df6e0cff9e8610bc4163742d2))
2930
</details>
3031

gix-packetline/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gix-packetline"
3-
version = "0.17.4"
3+
version = "0.17.5"
44
repository = "https://github.com/Byron/gitoxide"
55
license = "MIT OR Apache-2.0"
66
description = "A crate of the gitoxide project implementing the pkt-line serialization format"

gix-transport/CHANGELOG.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@ 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-
## Unreleased
8+
## 0.41.3 (2024-03-22)
99

1010
A maintenance release without user-facing changes, but with a `reqwest` update that uses more recent tls and hyper versions.
1111

1212
### Commit Statistics
1313

1414
<csr-read-only-do-not-edit/>
1515

16-
- 5 commits contributed to the release.
17-
- 6 days passed between releases.
16+
- 6 commits contributed to the release over the course of 1 calendar day.
17+
- 7 days passed between releases.
1818
- 0 commits were understood as [conventional](https://www.conventionalcommits.org).
1919
- 0 issues like '(#ID)' were seen in commit messages
2020

@@ -25,6 +25,7 @@ A maintenance release without user-facing changes, but with a `reqwest` update t
2525
<details><summary>view details</summary>
2626

2727
* **Uncategorized**
28+
- Prepare changelogs prior to release ([`7018a92`](https://github.com/Byron/gitoxide/commit/7018a928a405ba0534442f0b538d58f520145376))
2829
- Merge branch 'patch-1' ([`8fde62b`](https://github.com/Byron/gitoxide/commit/8fde62b2617985f835e2e2fa07c735a5158789cf))
2930
- Turn`curl` into a workspace package ([`adee500`](https://github.com/Byron/gitoxide/commit/adee50016007619495c93580e845ae757377c4f0))
3031
- Adjust expectations to deal with reqwest Content-Length ([`3b8f39d`](https://github.com/Byron/gitoxide/commit/3b8f39d64cdf44952fea9a45dc3d40df550e60ec))

gix-transport/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gix-transport"
3-
version = "0.41.2"
3+
version = "0.41.3"
44
repository = "https://github.com/Byron/gitoxide"
55
license = "MIT OR Apache-2.0"
66
description = "A crate of the gitoxide project dedicated to implementing the git transport layer"
@@ -57,7 +57,7 @@ gix-command = { version = "^0.3.6", path = "../gix-command" }
5757
gix-features = { version = "^0.38.1", path = "../gix-features" }
5858
gix-url = { version = "^0.27.2", path = "../gix-url" }
5959
gix-sec = { version = "^0.10.6", path = "../gix-sec" }
60-
gix-packetline = { version = "^0.17.4", path = "../gix-packetline" }
60+
gix-packetline = { version = "^0.17.5", path = "../gix-packetline" }
6161
gix-credentials = { version = "^0.24.2", path = "../gix-credentials", optional = true }
6262
gix-quote = { version = "^0.4.12", path = "../gix-quote" }
6363

gix/CHANGELOG.md

+3-2
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-
## Unreleased
8+
## 0.61.1 (2024-03-22)
99

1010
This release also updates `reqwest` to v0.12, bringing hyper 1.0 and a more recent `rustls` version.
1111

@@ -17,7 +17,7 @@ This release also updates `reqwest` to v0.12, bringing hyper 1.0 and a more rece
1717

1818
<csr-read-only-do-not-edit/>
1919

20-
- 6 commits contributed to the release over the course of 2 calendar days.
20+
- 7 commits contributed to the release over the course of 2 calendar days.
2121
- 3 days passed between releases.
2222
- 1 commit was understood as [conventional](https://www.conventionalcommits.org).
2323
- 0 issues like '(#ID)' were seen in commit messages
@@ -29,6 +29,7 @@ This release also updates `reqwest` to v0.12, bringing hyper 1.0 and a more rece
2929
<details><summary>view details</summary>
3030

3131
* **Uncategorized**
32+
- Prepare changelogs prior to release ([`7018a92`](https://github.com/Byron/gitoxide/commit/7018a928a405ba0534442f0b538d58f520145376))
3233
- Merge branch 'patch-1' ([`8fde62b`](https://github.com/Byron/gitoxide/commit/8fde62b2617985f835e2e2fa07c735a5158789cf))
3334
- Turn`curl` into a workspace package ([`adee500`](https://github.com/Byron/gitoxide/commit/adee50016007619495c93580e845ae757377c4f0))
3435
- Make reqwest a workspace package ([`369cf1b`](https://github.com/Byron/gitoxide/commit/369cf1b03735617debe1527b3f23247685181e7d))

gix/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "gix"
33
repository = "https://github.com/Byron/gitoxide"
44
description = "Interact with git repositories just like git would"
55
license = "MIT OR Apache-2.0"
6-
version = "0.61.0"
6+
version = "0.61.1"
77
authors = ["Sebastian Thiel <[email protected]>"]
88
edition = "2021"
99
include = ["src/**/*", "LICENSE-*"]
@@ -294,7 +294,7 @@ gix-archive = { version = "^0.11.0", path = "../gix-archive", default-features =
294294

295295
# For communication with remotes
296296
gix-protocol = { version = "^0.44.2", path = "../gix-protocol", optional = true }
297-
gix-transport = { version = "^0.41.2", path = "../gix-transport", optional = true }
297+
gix-transport = { version = "^0.41.3", path = "../gix-transport", optional = true }
298298

299299
# Just to get the progress-tree feature
300300
prodash = { workspace = true, optional = true, features = ["progress-tree"] }

0 commit comments

Comments
 (0)