Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 27e8c18

Browse files
committed
Release gix-date v0.7.0, gix-trace v0.1.2, gix-actor v0.23.0, gix-commitgraph v0.17.1, gix-utils v0.1.4, gix-object v0.32.0, gix-ref v0.32.0, gix-config v0.25.0, gix-diff v0.32.0, gix-discover v0.21.0, gix-hashtable v0.2.3, gix-revwalk v0.3.0, gix-traverse v0.29.0, gix-index v0.20.0, gix-mailmap v0.15.0, gix-negotiate v0.4.0, gix-pack v0.39.0, gix-odb v0.49.0, gix-protocol v0.35.0, gix-revision v0.17.0, gix-refspec v0.13.0, gix-worktree v0.21.0, gix v0.48.0, safety bump 20 crates
SAFETY BUMP: gix-actor v0.23.0, gix-object v0.32.0, gix-ref v0.32.0, gix-config v0.25.0, gix-diff v0.32.0, gix-discover v0.21.0, gix-revwalk v0.3.0, gix-traverse v0.29.0, gix-index v0.20.0, gix-mailmap v0.15.0, gix-negotiate v0.4.0, gix-pack v0.39.0, gix-odb v0.49.0, gix-protocol v0.35.0, gix-revision v0.17.0, gix-refspec v0.13.0, gix-worktree v0.21.0, gix v0.48.0, gitoxide-core v0.30.0, gitoxide v0.28.0
1 parent 00f96fb commit 27e8c18

52 files changed

Lines changed: 431 additions & 243 deletions

Some content is hidden

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

Cargo.lock

Lines changed: 110 additions & 110 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 <[email protected]>"]
66
edition = "2021"
77
license = "MIT OR Apache-2.0"
8-
version = "0.27.0"
8+
version = "0.28.0"
99
default-run = "gix"
1010
include = ["src/**/*", "LICENSE-*", "README.md", "CHANGELOG.md"]
1111
resolver = "2"
@@ -159,9 +159,9 @@ gitoxide-core-async-client = ["gitoxide-core/async-client", "futures-lite"]
159159
[dependencies]
160160
anyhow = "1.0.42"
161161

162-
gitoxide-core = { version = "^0.29.0", path = "gitoxide-core" }
162+
gitoxide-core = { version = "^0.30.0", path = "gitoxide-core" }
163163
gix-features = { version = "^0.31.0", path = "gix-features" }
164-
gix = { version = "^0.47.0", path = "gix", default-features = false }
164+
gix = { version = "^0.48.0", path = "gix", default-features = false }
165165
time = "0.3.19"
166166

167167
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.47.0", path = "../gix", default-features = false, features = ["max-performance-safe"] }
28+
gix = { version = "^0.48.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.29.0"
5+
version = "0.30.0"
66
authors = ["Sebastian Thiel <[email protected]>"]
77
license = "MIT/Apache-2.0"
88
edition = "2021"
@@ -41,8 +41,8 @@ serde = ["gix/serde", "dep:serde_json", "dep:serde", "bytesize/serde"]
4141

4242
[dependencies]
4343
# deselect everything else (like "performance") as this should be controllable by the parent application.
44-
gix = { version = "^0.47.0", path = "../gix", default-features = false }
45-
gix-pack-for-configuration-only = { package = "gix-pack", version = "^0.38.0", path = "../gix-pack", default-features = false, features = ["pack-cache-lru-dynamic", "pack-cache-lru-static"] }
44+
gix = { version = "^0.48.0", path = "../gix", default-features = false }
45+
gix-pack-for-configuration-only = { package = "gix-pack", version = "^0.39.0", path = "../gix-pack", default-features = false, features = ["pack-cache-lru-dynamic", "pack-cache-lru-static"] }
4646
gix-transport-configuration-only = { package = "gix-transport", version = "^0.33.0", path = "../gix-transport", default-features = false }
4747
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
4848
anyhow = "1.0.42"

gix-actor/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.23.0 (2023-06-29)
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
- 6 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 ([`00f96fb`](https://github.com/Byron/gitoxide/commit/00f96fb3110a8f81a1bd0d74c757c15b8773c6f6))
2829
- Merge branch 'i64-times' ([`b407461`](https://github.com/Byron/gitoxide/commit/b407461d8991db67a5bdb2ab13f518f78a85ed40))
2930
- Add a test to see what happens if negative dates are used in commits ([`57a5cd1`](https://github.com/Byron/gitoxide/commit/57a5cd1ca2f8153568c366cd1709be7d4ebec972))
3031
</details>

gix-actor/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-actor"
3-
version = "0.22.0"
3+
version = "0.23.0"
44
description = "A way to identify git actors"
55
authors = ["Sebastian Thiel <[email protected]>"]
66
repository = "https://github.com/Byron/gitoxide"
@@ -18,7 +18,7 @@ serde = ["dep:serde", "bstr/serde", "gix-date/serde"]
1818

1919
[dependencies]
2020
gix-features = { version = "^0.31.0", path = "../gix-features", optional = true }
21-
gix-date = { version = "^0.6.0", path = "../gix-date" }
21+
gix-date = { version = "^0.7.0", path = "../gix-date" }
2222

2323
thiserror = "1.0.38"
2424
btoi = "0.4.2"

gix-archive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ doctest = false
1414
[dependencies]
1515
thiserror = "1.0.26"
1616
gix-hash = { version = "^0.11.3", path = "../gix-hash" }
17-
gix-object = { version = "^0.31.0", path = "../gix-object" }
17+
gix-object = { version = "^0.32.0", path = "../gix-object" }

gix-commitgraph/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.17.1 (2023-06-29)
99

1010
A maintenance release without user-facing changes.
1111

1212
### Commit Statistics
1313

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

16-
- 3 commits contributed to the release over the course of 6 calendar days.
16+
- 4 commits contributed to the release over the course of 6 calendar days.
1717
- 6 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 ([`00f96fb`](https://github.com/Byron/gitoxide/commit/00f96fb3110a8f81a1bd0d74c757c15b8773c6f6))
2829
- Merge branch 'i64-times' ([`b407461`](https://github.com/Byron/gitoxide/commit/b407461d8991db67a5bdb2ab13f518f78a85ed40))
2930
- Adapt to changes in `gix-date` ([`fba45c6`](https://github.com/Byron/gitoxide/commit/fba45c68d57d5f73070a6949556a04187d42e427))
3031
- Upgrade memmap2 and fastrand dependencies ([`6fc7497`](https://github.com/Byron/gitoxide/commit/6fc74971ac6838cbfd9c869ba3746713001d7a38))

gix-commitgraph/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-commitgraph"
3-
version = "0.17.0"
3+
version = "0.17.1"
44
repository = "https://github.com/Byron/gitoxide"
55
documentation = "https://git-scm.com/docs/commit-graph#:~:text=The%20commit-graph%20file%20is%20a%20supplemental%20data%20structure,or%20in%20the%20info%20directory%20of%20an%20alternate."
66
license = "MIT/Apache-2.0"

gix-config/CHANGELOG.md

Lines changed: 4 additions & 3 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.25.0 (2023-06-29)
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 over the course of 6 calendar days.
16+
- 2 commits contributed to the release over the course of 6 calendar days.
1717
- 6 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 ([`00f96fb`](https://github.com/Byron/gitoxide/commit/00f96fb3110a8f81a1bd0d74c757c15b8773c6f6))
2829
- Upgrade criterion ([`285ce12`](https://github.com/Byron/gitoxide/commit/285ce12c5564db3917923791729641383789fe89))
2930
</details>
3031

@@ -2416,7 +2417,7 @@ This is a maintenance release without functional changes.
24162417
- _None._
24172418

24182419
<csr-unknown>
2419-
lenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopen<csr-unknown/>
2420+
lenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopenlenfrom_envopen<csr-unknown/>
24202421
<csr-unknown/>
24212422

24222423
## v0.1.1 (2021-05-09)

0 commit comments

Comments
 (0)