Skip to content

Commit 2560a2c

Browse files
committed
Release gix-attributes v0.13.1, gix-diff v0.30.1, gix-revwalk v0.1.0, gix-traverse v0.27.0, gix-index v0.18.0, gix-revision v0.15.2, gix-negotiate v0.2.1, gix-pack v0.37.0, gix-odb v0.47.0, gix-protocol v0.33.2, gix-worktree v0.19.0, gix v0.46.0, safety bump 7 crates
SAFETY BUMP: gix-index v0.18.0, gix-pack v0.37.0, gix-odb v0.47.0, gix-worktree v0.19.0, gix v0.46.0, gitoxide-core v0.29.0, gitoxide v0.27.0
1 parent 298f3d7 commit 2560a2c

File tree

28 files changed

+154
-84
lines changed

28 files changed

+154
-84
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ repository = "https://github.com/Byron/gitoxide"
55
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
66
edition = "2021"
77
license = "MIT OR Apache-2.0"
8-
version = "0.26.0"
8+
version = "0.27.0"
99
default-run = "gix"
1010
include = ["src/**/*", "LICENSE-*", "README.md", "CHANGELOG.md"]
1111
resolver = "2"
@@ -151,9 +151,9 @@ gitoxide-core-async-client = ["gitoxide-core/async-client", "futures-lite"]
151151
[dependencies]
152152
anyhow = "1.0.42"
153153

154-
gitoxide-core = { version = "^0.28.0", path = "gitoxide-core" }
154+
gitoxide-core = { version = "^0.29.0", path = "gitoxide-core" }
155155
gix-features = { version = "^0.30.0", path = "gix-features" }
156-
gix = { version = "^0.45.1", path = "gix", default-features = false }
156+
gix = { version = "^0.46.0", path = "gix", default-features = false }
157157
time = "0.3.19"
158158

159159
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
@@ -25,7 +25,7 @@ cache-efficiency-debug = ["gix/cache-efficiency-debug"]
2525
vendored-openssl = ["crates-index/vendored-openssl"]
2626

2727
[dependencies]
28-
gix = { version = "^0.45.1", path = "../gix", default-features = false, features = ["max-performance-safe"] }
28+
gix = { version = "^0.46.0", path = "../gix", default-features = false, features = ["max-performance-safe"] }
2929
anyhow = "1.0.42"
3030
clap = { version = "4.1.0", features = ["derive", "cargo"] }
3131
env_logger = { version = "0.10.0", default-features = false, features = ["humantime", "auto-color"] }

gitoxide-core/Cargo.toml

Lines changed: 3 additions & 3 deletions
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.28.0"
5+
version = "0.29.0"
66
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
77
license = "MIT/Apache-2.0"
88
edition = "2021"
@@ -38,8 +38,8 @@ serde = ["gix/serde", "serde_json", "dep:serde", "bytesize/serde"]
3838

3939
[dependencies]
4040
# deselect everything else (like "performance") as this should be controllable by the parent application.
41-
gix = { version = "^0.45.1", path = "../gix", default-features = false }
42-
gix-pack-for-configuration-only = { package = "gix-pack", version = "^0.36.0", path = "../gix-pack", default-features = false, features = ["pack-cache-lru-dynamic", "pack-cache-lru-static"] }
41+
gix = { version = "^0.46.0", path = "../gix", default-features = false }
42+
gix-pack-for-configuration-only = { package = "gix-pack", version = "^0.37.0", path = "../gix-pack", default-features = false, features = ["pack-cache-lru-dynamic", "pack-cache-lru-static"] }
4343
gix-transport-configuration-only = { package = "gix-transport", version = "^0.32.0", path = "../gix-transport", default-features = false }
4444
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
4545
anyhow = "1.0.42"

gix-attributes/CHANGELOG.md

Lines changed: 3 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-
## Unreleased
8+
## 0.13.1 (2023-06-10)
99

1010
### New Features
1111

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

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

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

3030
* **Uncategorized**
31+
- Prepare changelogs prior to release ([`298f3d7`](https://github.com/Byron/gitoxide/commit/298f3d7359c5b183314d8c584e45dcdd559d88b3))
3132
- Merge branch 'walk-with-commitgraph' ([`fdee9a2`](https://github.com/Byron/gitoxide/commit/fdee9a22873a13ae644d3dc92f8fe93f8f0266c0))
3233
- Add `StateRef::is_set()` and `StateRef::is_unset()` for convenience(). ([`b061df8`](https://github.com/Byron/gitoxide/commit/b061df82b88b1fa3670240ffc85220ef97b9d892))
3334
</details>

gix-attributes/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gix-attributes"
3-
version = "0.13.0"
3+
version = "0.13.1"
44
repository = "https://github.com/Byron/gitoxide"
55
license = "MIT/Apache-2.0"
66
description = "A WIP crate of the gitoxide project dealing .gitattributes files"

gix-diff/CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ 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.30.1 (2023-06-10)
99

1010
A maintenance release without user-facing changes.
1111

1212
### Commit Statistics
1313

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

16-
- 2 commits contributed to the release.
16+
- 3 commits contributed to the release.
1717
- 3 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
@@ -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 ([`298f3d7`](https://github.com/Byron/gitoxide/commit/298f3d7359c5b183314d8c584e45dcdd559d88b3))
2829
- Merge branch 'walk-with-commitgraph' ([`fdee9a2`](https://github.com/Byron/gitoxide/commit/fdee9a22873a13ae644d3dc92f8fe93f8f0266c0))
2930
- Adapt to changes in `gix-traverse` ([`1f682fd`](https://github.com/Byron/gitoxide/commit/1f682fd991b9b76a8d37e6852567ff239c0ac0db))
3031
</details>

gix-diff/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gix-diff"
3-
version = "0.30.0"
3+
version = "0.30.1"
44
repository = "https://github.com/Byron/gitoxide"
55
license = "MIT/Apache-2.0"
66
description = "Calculate differences between various git objects"

gix-index/CHANGELOG.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,29 @@ 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.18.0 (2023-06-10)
99

1010
A maintenance release without user-facing changes.
1111

12+
### Commit Statistics
13+
14+
<csr-read-only-do-not-edit/>
15+
16+
- 1 commit contributed to the release.
17+
- 3 days passed between releases.
18+
- 0 commits were understood as [conventional](https://www.conventionalcommits.org).
19+
- 0 issues like '(#ID)' were seen in commit messages
20+
21+
### Commit Details
22+
23+
<csr-read-only-do-not-edit/>
24+
25+
<details><summary>view details</summary>
26+
27+
* **Uncategorized**
28+
- Prepare changelogs prior to release ([`298f3d7`](https://github.com/Byron/gitoxide/commit/298f3d7359c5b183314d8c584e45dcdd559d88b3))
29+
</details>
30+
1231
## 0.17.0 (2023-06-06)
1332

1433
### New Features

gix-index/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gix-index"
3-
version = "0.17.0"
3+
version = "0.18.0"
44
repository = "https://github.com/Byron/gitoxide"
55
license = "MIT/Apache-2.0"
66
description = "A work-in-progress crate of the gitoxide project dedicated implementing the git index file"
@@ -24,7 +24,7 @@ gix-features = { version = "^0.30.0", path = "../gix-features", features = ["rus
2424
gix-hash = { version = "^0.11.2", path = "../gix-hash" }
2525
gix-bitmap = { version = "^0.2.4", path = "../gix-bitmap" }
2626
gix-object = { version = "^0.30.0", path = "../gix-object" }
27-
gix-traverse = { version = "^0.26.0", path = "../gix-traverse" }
27+
gix-traverse = { version = "^0.27.0", path = "../gix-traverse" }
2828
gix-lock = { version = "^6.0.0", path = "../gix-lock" }
2929

3030
thiserror = "1.0.32"

0 commit comments

Comments
 (0)