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

Skip to content

Commit f0cbb24

Browse files
committed
Release git-hash v0.9.3, git-features v0.20.0, git-config v0.2.0, safety bump 12 crates
SAFETY BUMP: git-config v0.2.0, git-actor v0.9.0, git-url v0.4.0, git-object v0.18.0, git-index v0.2.0, git-worktree v0.1.0, git-protocol v0.15.0, git-transport v0.16.0, git-mailmap v0.1.0, git-diff v0.14.0, git-traverse v0.13.0, git-revision v0.1.0
1 parent 1d07934 commit f0cbb24

27 files changed

Lines changed: 124 additions & 108 deletions

File tree

Cargo.lock

Lines changed: 14 additions & 14 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
@@ -83,10 +83,10 @@ cache-efficiency-debug = ["git-features/cache-efficiency-debug"]
8383
anyhow = "1.0.42"
8484

8585
gitoxide-core = { version ="^0.13.0", path = "gitoxide-core" }
86-
git-features = { version = "^0.19.1", path = "git-features" }
86+
git-features = { version = "^0.20.0", path = "git-features" }
8787
git-repository = { version = "^0.15.0", path = "git-repository", default-features = false }
8888

89-
git-transport-for-configuration-only = { package = "git-transport", optional = true, version = "^0.15.0", path = "git-transport" }
89+
git-transport-for-configuration-only = { package = "git-transport", optional = true, version = "^0.16.0", path = "git-transport" }
9090

9191
clap = { version = "3.0.0", features = ["derive", "cargo"] }
9292
prodash = { version = "19.0.0", optional = true, default-features = false }

experiments/diffing/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ publish = false
1010
[dependencies]
1111
anyhow = "1"
1212
git-repository = { version = "^0.15.0", path = "../../git-repository", features = ["unstable"] }
13-
git-features-for-config = { package = "git-features", version = "^0.19.1", path = "../../git-features", features = ["cache-efficiency-debug"] }
13+
git-features-for-config = { package = "git-features", version = "^0.20.0", path = "../../git-features", features = ["cache-efficiency-debug"] }
1414
git2 = "0.14"
1515
rayon = "1.5.0"
1616
memory-lru = "0.1.0"

git-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 = "git-actor"
3-
version = "0.8.1"
3+
version = "0.9.0"
44
description = "A way to identify git actors"
55
authors = ["Sebastian Thiel <[email protected]>"]
66
repository = "https://github.com/Byron/gitoxide"
@@ -19,7 +19,7 @@ serde1 = ["serde", "bstr/serde1"]
1919
local-time-support = ["git-features/time"]
2020

2121
[dependencies]
22-
git-features = { version = "^0.19.1", path = "../git-features", optional = true }
22+
git-features = { version = "^0.20.0", path = "../git-features", optional = true }
2323
quick-error = "2.0.0"
2424
btoi = "0.4.2"
2525
bstr = { version = "0.2.13", default-features = false, features = ["std", "unicode"]}

git-commitgraph/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ doctest = false
1717
serde1 = ["serde", "git-hash/serde1", "bstr/serde1"]
1818

1919
[dependencies]
20-
git-features = { version = "^0.19.1", path = "../git-features", features = ["rustsha1"] }
21-
git-hash = { version = "^0.9.2", path = "../git-hash" }
20+
git-features = { version = "^0.20.0", path = "../git-features", features = ["rustsha1"] }
21+
git-hash = { version = "^0.9.3", path = "../git-hash" }
2222
git-chunk = { version = "^0.3.0", path = "../git-chunk" }
2323

2424
bstr = { version = "0.2.13", default-features = false, features = ["std"] }

git-config/CHANGELOG.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ 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.2.0 (2022-04-02)
9+
10+
<csr-id-55c00d880535a1f8c37cb7d4405d39ff5a7654a0/>
911

1012
### New Features
1113

@@ -25,8 +27,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2527

2628
<csr-read-only-do-not-edit/>
2729

28-
- 40 commits contributed to the release over the course of 58 calendar days.
29-
- 59 days passed between releases.
30+
- 42 commits contributed to the release over the course of 60 calendar days.
31+
- 60 days passed between releases.
3032
- 3 commits where understood as [conventional](https://www.conventionalcommits.org).
3133
- 2 unique issues were worked on: [#298](https://github.com/Byron/gitoxide/issues/298), [#331](https://github.com/Byron/gitoxide/issues/331)
3234

@@ -45,6 +47,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4547
* **[#298](https://github.com/Byron/gitoxide/issues/298)**
4648
- minor refactor ([`2f0234c`](https://github.com/Byron/gitoxide/commit/2f0234c05d1a3e1e3b96dff9680189c67cb6c9ff))
4749
* **[#331](https://github.com/Byron/gitoxide/issues/331)**
50+
- Update changelog prior to release ([`1d07934`](https://github.com/Byron/gitoxide/commit/1d079346e789b0acc9a4bdf7577b21c1c37b6106))
4851
- minor refactor of tests ([`ebe551f`](https://github.com/Byron/gitoxide/commit/ebe551fc16a98d4101799b0d657b42f445f5b16e))
4952
- refactor ([`845fe37`](https://github.com/Byron/gitoxide/commit/845fe373bf25de497f01209f4bed5132cc8eae65))
5053
- refactor include path recursion logic ([`2862a07`](https://github.com/Byron/gitoxide/commit/2862a0718e3bc03e4edda60f1b359dd6068e8d1d))
@@ -66,6 +69,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6669
- Add AsRef and Deref for values::Path; additional assertions ([`0666a35`](https://github.com/Byron/gitoxide/commit/0666a358b3b7aadda504979e543cc2058b478bfe))
6770
- Add `git_config::values::Path` for a typesafe git path ([`e4d6685`](https://github.com/Byron/gitoxide/commit/e4d6685064ad2b433f8acd3a74b320bf0169a994))
6871
* **Uncategorized**
72+
- derive PartialEq, Eq and Debug on ResolvedGitConfig ([`b2a88a5`](https://github.com/Byron/gitoxide/commit/b2a88a5af259ec07c51d873cac172bb60d7575aa))
6973
- Refactor git_config tests. ([`714ef5c`](https://github.com/Byron/gitoxide/commit/714ef5c2cdea2af4026dba91119845ff68298d8d))
7074
- make fmt ([`7cf3545`](https://github.com/Byron/gitoxide/commit/7cf354509b545f7e7c99e159b5989ddfbe86273d))
7175
- Merge branch 'describe-rev' ([`77b7cd9`](https://github.com/Byron/gitoxide/commit/77b7cd9a7813aaa1a15d035ea42c1e3fe4eef8dd))
@@ -495,6 +499,10 @@ lenfrom_envopen<csr-unknown/>
495499

496500
## v0.1.0 (2021-03-12)
497501

502+
<csr-id-949622e461eb2116393ec6f4633ec0cb2e1695b5/>
503+
<csr-id-bcacfc9bcf19a0339541b24e84de68d95291c62b/>
504+
<csr-id-41f118d2aa560188fd3399d2390aa43794b0af75/>
505+
498506
### Other
499507

500508
- <csr-id-949622e461eb2116393ec6f4633ec0cb2e1695b5/> Include benches in crate to allow publishing to work

git-config/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "git-config"
3-
version = "0.1.11"
3+
version = "0.2.0"
44
repository = "https://github.com/Byron/gitoxide"
55
description = "A git-config file parser and editor from the gitoxide project"
66
license = "MIT OR Apache-2.0"
@@ -14,7 +14,7 @@ include = ["src/**/*", "LICENSE-*", "README.md", "CHANGELOG.md"]
1414
# serde = ["serde_crate"]
1515

1616
[dependencies]
17-
git-features = { version = "^0.19.1", path = "../git-features"}
17+
git-features = { version = "^0.20.0", path = "../git-features"}
1818
dirs = "4"
1919
nom = { version = "7", default_features = false, features = [ "std" ] }
2020
memchr = "2"

git-diff/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "git-diff"
3-
version = "0.13.0"
3+
version = "0.14.0"
44
repository = "https://github.com/Byron/gitoxide"
55
license = "MIT/Apache-2.0"
66
description = "Calculate differences between various git objects"
@@ -14,8 +14,8 @@ doctest = false
1414
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1515

1616
[dependencies]
17-
git-hash = { version = "^0.9.1", path = "../git-hash" }
18-
git-object = { version = "^0.17.0", path = "../git-object" }
17+
git-hash = { version = "^0.9.3", path = "../git-hash" }
18+
git-object = { version = "^0.18.0", path = "../git-object" }
1919
quick-error = "2.0.0"
2020

2121
[dev-dependencies]

git-features/CHANGELOG.md

Lines changed: 8 additions & 3 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.20.0 (2022-04-02)
99

1010
### New Features
1111

@@ -33,8 +33,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3333

3434
<csr-read-only-do-not-edit/>
3535

36-
- 36 commits contributed to the release over the course of 52 calendar days.
37-
- 70 days passed between releases.
36+
- 37 commits contributed to the release over the course of 54 calendar days.
37+
- 72 days passed between releases.
3838
- 5 commits where understood as [conventional](https://www.conventionalcommits.org).
3939
- 6 unique issues were worked on: [#298](https://github.com/Byron/gitoxide/issues/298), [#301](https://github.com/Byron/gitoxide/issues/301), [#329](https://github.com/Byron/gitoxide/issues/329), [#331](https://github.com/Byron/gitoxide/issues/331), [#333](https://github.com/Byron/gitoxide/issues/333), [#366](https://github.com/Byron/gitoxide/issues/366)
4040

@@ -65,6 +65,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6565
* **[#329](https://github.com/Byron/gitoxide/issues/329)**
6666
- in-manifest and in-lib documentation of feature toggles ([`15ff212`](https://github.com/Byron/gitoxide/commit/15ff212b17087de93f259e366f4e4b821cfbc28e))
6767
* **[#331](https://github.com/Byron/gitoxide/issues/331)**
68+
- Update changelog prior to release ([`1d07934`](https://github.com/Byron/gitoxide/commit/1d079346e789b0acc9a4bdf7577b21c1c37b6106))
6869
- Remove Option return values in favor of Result ([`493dbae`](https://github.com/Byron/gitoxide/commit/493dbae434e8e4a939e90d03ec3f500744c0725a))
6970
- Add `git_config::values::Path` for a typesafe git path ([`e4d6685`](https://github.com/Byron/gitoxide/commit/e4d6685064ad2b433f8acd3a74b320bf0169a994))
7071
* **[#333](https://github.com/Byron/gitoxide/issues/333)**
@@ -97,6 +98,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9798

9899
## 0.19.1 (2022-01-23)
99100

101+
<csr-id-361892ca15aa648802f6701ab6a5a30aedde3449/>
102+
100103
A maintenance release thanks to upgrade to `prodash` 18.
101104

102105
### Changed (BREAKING)
@@ -937,6 +940,8 @@ This release contains no functional changes.
937940

938941
## v0.1.0 (2020-07-12)
939942

943+
<csr-id-ab6f98b905f13ed2a7c0c483f34fab63141fbc5b/>
944+
940945
### Other
941946

942947
- <csr-id-ab6f98b905f13ed2a7c0c483f34fab63141fbc5b/> try-join with static typing works, but…

git-features/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "git-features"
33
description = "A crate to integrate various capabilities using compile-time feature flags"
44
repository = "https://github.com/Byron/gitoxide"
5-
version = "0.19.1"
5+
version = "0.20.0"
66
authors = ["Sebastian Thiel <[email protected]>"]
77
license = "MIT/Apache-2.0"
88
edition = "2018"
@@ -89,7 +89,7 @@ required-features = ["bstr"]
8989
[dependencies]
9090
#! ### Optional Dependencies
9191

92-
git-hash = { version = "^0.9.1", path = "../git-hash" }
92+
git-hash = { version = "^0.9.3", path = "../git-hash" }
9393

9494

9595

0 commit comments

Comments
 (0)