Skip to content

Commit ec64a88

Browse files
committed
Release gix-revision v0.12.2
1 parent cfaab7f commit ec64a88

File tree

5 files changed

+43
-5
lines changed

5 files changed

+43
-5
lines changed

Cargo.lock

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

gix-refspec/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ rust-version = "1.64"
1313
doctest = false
1414

1515
[dependencies]
16-
gix-revision = { version = "^0.12.0", path = "../gix-revision" }
16+
gix-revision = { version = "^0.12.2", path = "../gix-revision" }
1717
gix-validate = { version = "^0.7.3", path = "../gix-validate" }
1818
gix-hash = { version = "^0.10.3", path = "../gix-hash" }
1919

gix-revision/CHANGELOG.md

+39-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,43 @@ 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+
## 0.12.2 (2023-04-01)
9+
10+
### Bug Fixes
11+
12+
- <csr-id-cfaab7ffc67d33224afe4b92e42059c0bb88ea02/> Parse revisions with `@` in their name.
13+
Previously these would cause a parse error due to confusing `@` with
14+
the short form of `HEAD`.
15+
16+
Merge branch 'fix-rev-parse-with-at'
17+
18+
### Other
19+
20+
- <csr-id-1c27e7a3745b156ea953e430f726576389fad5f2/> Parse revisions with the @ character
21+
Fixes https://github.com/Byron/gitoxide/issues/802
22+
23+
### Commit Statistics
24+
25+
<csr-read-only-do-not-edit/>
26+
27+
- 3 commits contributed to the release.
28+
- 6 days passed between releases.
29+
- 2 commits were understood as [conventional](https://www.conventionalcommits.org).
30+
- 1 unique issue was worked on: [#802](https://github.com/Byron/gitoxide/issues/802)
31+
32+
### Commit Details
33+
34+
<csr-read-only-do-not-edit/>
35+
36+
<details><summary>view details</summary>
37+
38+
* **[#802](https://github.com/Byron/gitoxide/issues/802)**
39+
- Parse revisions with `@` in their name. ([`cfaab7f`](https://github.com/Byron/gitoxide/commit/cfaab7ffc67d33224afe4b92e42059c0bb88ea02))
40+
* **Uncategorized**
41+
- Refactor ([`c0905ce`](https://github.com/Byron/gitoxide/commit/c0905ce74f1bef4c42c9729e2bcf267d7aa6af5e))
42+
- Parse revisions with the @ character ([`1c27e7a`](https://github.com/Byron/gitoxide/commit/1c27e7a3745b156ea953e430f726576389fad5f2))
43+
</details>
44+
845
## 0.12.1 (2023-03-26)
946

1047
A maintenance release without any user-facing changes.
@@ -13,7 +50,7 @@ A maintenance release without any user-facing changes.
1350

1451
<csr-read-only-do-not-edit/>
1552

16-
- 2 commits contributed to the release over the course of 3 calendar days.
53+
- 3 commits contributed to the release over the course of 3 calendar days.
1754
- 21 days passed between releases.
1855
- 0 commits were understood as [conventional](https://www.conventionalcommits.org).
1956
- 0 issues like '(#ID)' were seen in commit messages
@@ -25,6 +62,7 @@ A maintenance release without any user-facing changes.
2562
<details><summary>view details</summary>
2663

2764
* **Uncategorized**
65+
- Release gix-tempfile v5.0.2, gix-validate v0.7.4, gix-config v0.20.0, gix-prompt v0.3.3, gix-diff v0.28.1, gix-discover v0.16.1, gix-pack v0.33.2, gix-transport v0.29.1, gix-protocol v0.30.1, gix-revision v0.12.1, gix-worktree v0.15.1, gix v0.43.0, safety bump gix v0.43.0 ([`5dc1f9f`](https://github.com/Byron/gitoxide/commit/5dc1f9f2bcb8b3e147115fcb6f76558e8f48ffef))
2866
- Prepare changelogs prior to release ([`3016a28`](https://github.com/Byron/gitoxide/commit/3016a285f566bdfe7de2774fa6f2254c1b1a2c51))
2967
- Correct more typos with `typos` tool. ([`2321eb9`](https://github.com/Byron/gitoxide/commit/2321eb971c2b89551506e2016a3495fafd15b47d))
3068
</details>

gix-revision/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gix-revision"
3-
version = "0.12.1"
3+
version = "0.12.2"
44
repository = "https://github.com/Byron/gitoxide"
55
license = "MIT/Apache-2.0"
66
description = "A WIP crate of the gitoxide project dealing with finding names for revisions and parsing specifications"

gix/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ gix-hash = { version = "^0.10.3", path = "../gix-hash" }
125125
gix-object = { version = "^0.28.0", path = "../gix-object" }
126126
gix-actor = { version = "^0.19.0", path = "../gix-actor" }
127127
gix-pack = { version = "^0.33.2", path = "../gix-pack", features = ["object-cache-dynamic"] }
128-
gix-revision = { version = "^0.12.1", path = "../gix-revision" }
128+
gix-revision = { version = "^0.12.2", path = "../gix-revision" }
129129

130130
gix-path = { version = "^0.7.3", path = "../gix-path" }
131131
gix-url = { version = "^0.16.0", path = "../gix-url" }

0 commit comments

Comments
 (0)