Skip to content

Commit a474395

Browse files
committed
Adjusting changelogs prior to release of git-hash v0.7.0, git-features v0.16.5, git-actor v0.5.3, git-validate v0.5.3, git-object v0.14.1, git-diff v0.10.0, git-tempfile v1.0.3, git-lock v1.0.1, git-traverse v0.9.0, git-pack v0.12.0, git-odb v0.22.0, git-packetline v0.11.0, git-url v0.3.4, git-transport v0.12.0, git-protocol v0.11.0, git-ref v0.8.0, git-repository v0.10.0, cargo-smart-release v0.4.0, safety bump 3 crates
SAFETY BUMP: git-testtools v0.6.0, git-commitgraph v0.5.0, gitoxide-core v0.11.0
1 parent 6d30e2c commit a474395

File tree

32 files changed

+110
-100
lines changed

32 files changed

+110
-100
lines changed

Cargo.lock

Lines changed: 12 additions & 12 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
@@ -66,8 +66,8 @@ cache-efficiency-debug = ["git-features/cache-efficiency-debug"]
6666
[dependencies]
6767
anyhow = "1.0.42"
6868

69-
gitoxide-core = { version ="^0.10.5", path = "gitoxide-core" }
70-
git-features = { version = "^0.16.0", path = "git-features" }
69+
gitoxide-core = { version ="^0.11.0", path = "gitoxide-core" }
70+
git-features = { version ="^0.16.5", path = "git-features" }
7171
git-repository = { version ="^0.10.0", path = "git-repository", default-features = false }
7272

7373
git-transport-for-configuration-only = { package = "git-transport", optional = true, version ="^0.12.0", path = "git-transport" }

cargo-smart-release/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cargo-smart-release"
3-
version = "0.3.1"
3+
version = "0.4.0"
44
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
55
repository = "https://github.com/Byron/gitoxide"
66
description = "Cargo subcommand for fearlessly releasing crates in workspaces."

git-actor/CHANGELOG.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ 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+
## v0.5.3 (2021-10-12)
99

1010
### Commit Statistics
1111

1212
<csr-read-only-do-not-edit/>
1313

14-
- 5 commits contributed to the release over the course of 1 calendar day.
14+
- 6 commits contributed to the release over the course of 2 calendar days.
1515
- 0 commits where understood as [conventional](https://www.conventionalcommits.org).
1616
- 1 unique issue was worked on: [#198](https://github.com//Byron/gitoxide/issues/198)
1717

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

2222
<details><summary>view details</summary>
2323

24-
* **#198**
24+
* **[#198](https://github.com//Byron/gitoxide/issues/198)**
25+
- deduplicate conventional message ids ([`2fc45b7`](https://github.com//Byron/gitoxide/commit/2fc45b71116b19dd6d908686518a8620b78b8fb7))
2526
- regenerate all changelogs to get links ([`d654788`](https://github.com//Byron/gitoxide/commit/d65478880a170235e4f838156862ed035894fd5b))
2627
- Mention actual issues that where worked on ([`a517e39`](https://github.com//Byron/gitoxide/commit/a517e39a81145b331f6c7a6cc2fc22e25daf42e2))
2728
- Allow 'refactor' and 'other' in conventional messages if they have breaking changes ([`4eebaac`](https://github.com//Byron/gitoxide/commit/4eebaac669e590beed112b622752997c64772ef1))

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.5.2"
3+
version = "0.5.3"
44
description = "A way to identify git actors"
55
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
66
repository = "https://github.com/Byron/gitoxide"
@@ -19,7 +19,7 @@ local-time-support = ["git-features/time"]
1919
all-features = true
2020

2121
[dependencies]
22-
git-features = { version = "^0.16.0", path = "../git-features", optional = true }
22+
git-features = { version ="^0.16.5", 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"]}

git-commitgraph/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-commitgraph"
3-
version = "0.4.4"
3+
version = "0.5.0"
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"
@@ -16,8 +16,8 @@ doctest = false
1616
serde1 = ["serde", "git-hash/serde1", "bstr/serde1"]
1717

1818
[dependencies]
19-
git-features = { version = "^0.16.0", path = "../git-features", features = ["rustsha1"] }
20-
git-hash = { version ="^0.6.0", path = "../git-hash" }
19+
git-features = { version ="^0.16.5", path = "../git-features", features = ["rustsha1"] }
20+
git-hash = { version ="^0.7.0", path = "../git-hash" }
2121

2222
bstr = { version = "0.2.13", default-features = false, features = ["std"] }
2323
byteorder = "1.2.3"

git-diff/CHANGELOG.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ 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+
## v0.10.0 (2021-10-12)
99

1010
### Commit Statistics
1111

1212
<csr-read-only-do-not-edit/>
1313

14-
- 15 commits contributed to the release over the course of 27 calendar days.
14+
- 16 commits contributed to the release over the course of 28 calendar days.
1515
- 0 commits where understood as [conventional](https://www.conventionalcommits.org).
1616
- 1 unique issue was worked on: [#198](https://github.com//Byron/gitoxide/issues/198)
1717

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

2222
<details><summary>view details</summary>
2323

24-
* **#198**
24+
* **[#198](https://github.com//Byron/gitoxide/issues/198)**
25+
- deduplicate conventional message ids ([`2fc45b7`](https://github.com//Byron/gitoxide/commit/2fc45b71116b19dd6d908686518a8620b78b8fb7))
2526
- regenerate all changelogs to get links ([`d654788`](https://github.com//Byron/gitoxide/commit/d65478880a170235e4f838156862ed035894fd5b))
2627
- Mention actual issues that where worked on ([`a517e39`](https://github.com//Byron/gitoxide/commit/a517e39a81145b331f6c7a6cc2fc22e25daf42e2))
2728
- Allow 'refactor' and 'other' in conventional messages if they have breaking changes ([`4eebaac`](https://github.com//Byron/gitoxide/commit/4eebaac669e590beed112b622752997c64772ef1))

git-diff/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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.6.0", path = "../git-hash" }
18-
git-object = { version ="^0.14.0", path = "../git-object" }
17+
git-hash = { version ="^0.7.0", path = "../git-hash" }
18+
git-object = { version ="^0.14.1", path = "../git-object" }
1919
quick-error = "2.0.0"
2020

2121
[dev-dependencies]

git-features/CHANGELOG.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ 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+
## v0.16.5 (2021-10-12)
99

1010
### Commit Statistics
1111

1212
<csr-read-only-do-not-edit/>
1313

14-
- 5 commits contributed to the release over the course of 1 calendar day.
14+
- 6 commits contributed to the release over the course of 2 calendar days.
1515
- 0 commits where understood as [conventional](https://www.conventionalcommits.org).
1616
- 1 unique issue was worked on: [#198](https://github.com//Byron/gitoxide/issues/198)
1717

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

2222
<details><summary>view details</summary>
2323

24-
* **#198**
24+
* **[#198](https://github.com//Byron/gitoxide/issues/198)**
25+
- deduplicate conventional message ids ([`2fc45b7`](https://github.com//Byron/gitoxide/commit/2fc45b71116b19dd6d908686518a8620b78b8fb7))
2526
- regenerate all changelogs to get links ([`d654788`](https://github.com//Byron/gitoxide/commit/d65478880a170235e4f838156862ed035894fd5b))
2627
- Mention actual issues that where worked on ([`a517e39`](https://github.com//Byron/gitoxide/commit/a517e39a81145b331f6c7a6cc2fc22e25daf42e2))
2728
- Allow 'refactor' and 'other' in conventional messages if they have breaking changes ([`4eebaac`](https://github.com//Byron/gitoxide/commit/4eebaac669e590beed112b622752997c64772ef1))
@@ -300,7 +301,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
300301

301302
<details><summary>view details</summary>
302303

303-
* **#63**
304+
* **[#63](https://github.com//Byron/gitoxide/issues/63)**
304305
- git-protocol uses `oid` type ([`3930a6f`](https://github.com//Byron/gitoxide/commit/3930a6ff508f5bb2249fb2c2f21e00b74fecda22))
305306
- Make ObjectId/oid happen! ([`ca78d15`](https://github.com//Byron/gitoxide/commit/ca78d15373ec988d909be8f240baefe75555e077))
306307
- Move git-hash::owned::Id into git-hash::Id ([`fdbe704`](https://github.com//Byron/gitoxide/commit/fdbe704b6c9ace2b8f629f681a0580b24749a238))

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.16.4"
5+
version = "0.16.5"
66
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
77
license = "MIT/Apache-2.0"
88
edition = "2018"
@@ -49,7 +49,7 @@ path = "tests/pipe.rs"
4949
required-features = ["io-pipe"]
5050

5151
[dependencies]
52-
git-hash = { version ="^0.6.0", path = "../git-hash" }
52+
git-hash = { version ="^0.7.0", path = "../git-hash" }
5353

5454
# 'parallel' feature
5555
crossbeam-utils = { version = "0.8.5", optional = true }

0 commit comments

Comments
 (0)