Skip to content

Commit 1955a57

Browse files
committed
Release gix-transport v0.38.0, gix-protocol v0.41.1, gix v0.55.2, gitoxide-core v0.33.1, gitoxide v0.31.1
1 parent 12b5caf commit 1955a57

File tree

10 files changed

+25
-21
lines changed

10 files changed

+25
-21
lines changed

Diff for: CHANGELOG.md

+1-1
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.31.1 (2023-10-13)
99

1010
A re-release to deal with breakage in the dependency tree (self-caused).
1111

Diff for: Cargo.lock

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

Diff for: Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ repository = "https://github.com/Byron/gitoxide"
55
authors = ["Sebastian Thiel <[email protected]>"]
66
edition = "2021"
77
license = "MIT OR Apache-2.0"
8-
version = "0.31.0"
8+
version = "0.31.1"
99
default-run = "gix"
1010
include = ["src/**/*", "LICENSE-*", "README.md", "CHANGELOG.md"]
1111
resolver = "2"
@@ -162,9 +162,9 @@ gitoxide-core-async-client = ["gitoxide-core/async-client", "futures-lite"]
162162
[dependencies]
163163
anyhow = "1.0.42"
164164

165-
gitoxide-core = { version = "^0.33.0", path = "gitoxide-core" }
165+
gitoxide-core = { version = "^0.33.1", path = "gitoxide-core" }
166166
gix-features = { version = "^0.36.0", path = "gix-features" }
167-
gix = { version = "^0.55.1", path = "gix", default-features = false }
167+
gix = { version = "^0.55.2", path = "gix", default-features = false }
168168
time = "0.3.23"
169169

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

Diff for: gitoxide-core/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.33.1 (2023-10-13)
99

1010
### Bug Fixes
1111

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

2121
<csr-read-only-do-not-edit/>
2222

23-
- 2 commits contributed to the release.
23+
- 3 commits contributed to the release.
2424
- 1 commit was understood as [conventional](https://www.conventionalcommits.org).
2525
- 0 issues like '(#ID)' were seen in commit messages
2626

@@ -31,6 +31,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3131
<details><summary>view details</summary>
3232

3333
* **Uncategorized**
34+
- Prepare changelogs prior to release ([`12b5caf`](https://github.com/Byron/gitoxide/commit/12b5cafc49baf07d00313de468970a2db33ac1f8))
3435
- Bump `gix-transport` version to prevent it from being picked up. ([`8011c73`](https://github.com/Byron/gitoxide/commit/8011c73ee401bfca03811a249c46a4dd468af1b8))
3536
- Release gix v0.55.1 ([`4642c0c`](https://github.com/Byron/gitoxide/commit/4642c0c78f45b1956837bc874f6757fc302bee4a))
3637
</details>

Diff for: gitoxide-core/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "gitoxide-core"
33
description = "The library implementing all capabilities of the gitoxide CLI"
44
repository = "https://github.com/Byron/gitoxide"
5-
version = "0.33.0"
5+
version = "0.33.1"
66
authors = ["Sebastian Thiel <[email protected]>"]
77
license = "MIT OR Apache-2.0"
88
edition = "2021"
@@ -44,7 +44,7 @@ serde = ["gix/serde", "dep:serde_json", "dep:serde", "bytesize/serde"]
4444

4545
[dependencies]
4646
# deselect everything else (like "performance") as this should be controllable by the parent application.
47-
gix = { version = "^0.55.1", path = "../gix", default-features = false, features = ["blob-diff", "revision", "mailmap", "excludes", "attributes", "worktree-mutation", "credentials", "interrupt", "status"] }
47+
gix = { version = "^0.55.2", path = "../gix", default-features = false, features = ["blob-diff", "revision", "mailmap", "excludes", "attributes", "worktree-mutation", "credentials", "interrupt", "status"] }
4848
gix-pack-for-configuration-only = { package = "gix-pack", version = "^0.44.0", path = "../gix-pack", default-features = false, features = ["pack-cache-lru-dynamic", "pack-cache-lru-static", "generate", "streaming-input"] }
4949
gix-transport-configuration-only = { package = "gix-transport", version = "^0.38.0", path = "../gix-transport", default-features = false }
5050
gix-archive-for-configuration-only = { package = "gix-archive", version = "^0.6.0", path = "../gix-archive", optional = true, features = ["tar", "tar_gz"] }

Diff for: gix-protocol/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.41.1 (2023-10-13)
99

1010
### Bug Fixes
1111

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

2121
<csr-read-only-do-not-edit/>
2222

23-
- 1 commit contributed to the release.
23+
- 2 commits contributed to the release.
2424
- 1 commit was understood as [conventional](https://www.conventionalcommits.org).
2525
- 0 issues like '(#ID)' were seen in commit messages
2626

@@ -31,6 +31,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3131
<details><summary>view details</summary>
3232

3333
* **Uncategorized**
34+
- Prepare changelogs prior to release ([`12b5caf`](https://github.com/Byron/gitoxide/commit/12b5cafc49baf07d00313de468970a2db33ac1f8))
3435
- Bump `gix-transport` version to prevent it from being picked up. ([`8011c73`](https://github.com/Byron/gitoxide/commit/8011c73ee401bfca03811a249c46a4dd468af1b8))
3536
</details>
3637

Diff for: gix-protocol/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gix-protocol"
3-
version = "0.41.0"
3+
version = "0.41.1"
44
repository = "https://github.com/Byron/gitoxide"
55
license = "MIT OR Apache-2.0"
66
description = "A crate of the gitoxide project for implementing git protocols"

Diff for: gix-transport/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.38.0 (2023-10-13)
99

1010
### Bug Fixes
1111

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

2121
<csr-read-only-do-not-edit/>
2222

23-
- 1 commit contributed to the release.
23+
- 2 commits contributed to the release.
2424
- 1 commit was understood as [conventional](https://www.conventionalcommits.org).
2525
- 0 issues like '(#ID)' were seen in commit messages
2626

@@ -31,6 +31,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3131
<details><summary>view details</summary>
3232

3333
* **Uncategorized**
34+
- Prepare changelogs prior to release ([`12b5caf`](https://github.com/Byron/gitoxide/commit/12b5cafc49baf07d00313de468970a2db33ac1f8))
3435
- Bump `gix-transport` version to prevent it from being picked up. ([`8011c73`](https://github.com/Byron/gitoxide/commit/8011c73ee401bfca03811a249c46a4dd468af1b8))
3536
</details>
3637

Diff for: 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.55.2 (2023-10-13)
99

1010
### Bug Fixes
1111

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

2121
<csr-read-only-do-not-edit/>
2222

23-
- 1 commit contributed to the release.
23+
- 2 commits contributed to the release.
2424
- 1 commit was understood as [conventional](https://www.conventionalcommits.org).
2525
- 0 issues like '(#ID)' were seen in commit messages
2626

@@ -31,6 +31,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3131
<details><summary>view details</summary>
3232

3333
* **Uncategorized**
34+
- Prepare changelogs prior to release ([`12b5caf`](https://github.com/Byron/gitoxide/commit/12b5cafc49baf07d00313de468970a2db33ac1f8))
3435
- Bump `gix-transport` version to prevent it from being picked up. ([`8011c73`](https://github.com/Byron/gitoxide/commit/8011c73ee401bfca03811a249c46a4dd468af1b8))
3536
</details>
3637

Diff for: 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.55.1"
6+
version = "0.55.2"
77
authors = ["Sebastian Thiel <[email protected]>"]
88
edition = "2021"
99
include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"]
@@ -248,7 +248,7 @@ gix-worktree-stream = { version = "^0.6.0", path = "../gix-worktree-stream", opt
248248
gix-archive = { version = "^0.6.0", path = "../gix-archive", default-features = false, optional = true }
249249

250250
# For communication with remotes
251-
gix-protocol = { version = "^0.41.0", path = "../gix-protocol", optional = true }
251+
gix-protocol = { version = "^0.41.1", path = "../gix-protocol", optional = true }
252252
gix-transport = { version = "^0.38.0", path = "../gix-transport", optional = true }
253253

254254
# Just to get the progress-tree feature

0 commit comments

Comments
 (0)