Skip to content

Commit 13e01f5

Browse files
committed
Release gix-ref v0.29.1
1 parent 79cc248 commit 13e01f5

File tree

6 files changed

+38
-11
lines changed

6 files changed

+38
-11
lines changed

Cargo.lock

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

gix-config/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ gix-features = { version = "^0.29.0", path = "../gix-features"}
2121
gix-config-value = { version = "^0.12.0", path = "../gix-config-value" }
2222
gix-path = { version = "^0.8.0", path = "../gix-path" }
2323
gix-sec = { version = "^0.8.0", path = "../gix-sec" }
24-
gix-ref = { version = "^0.29.0", path = "../gix-ref" }
24+
gix-ref = { version = "^0.29.1", path = "../gix-ref" }
2525
gix-glob = { version = "^0.7.0", path = "../gix-glob" }
2626

2727
log = "0.4.17"

gix-discover/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ doctest = false
1515
[dependencies]
1616
gix-sec = { version = "^0.8.0", path = "../gix-sec" }
1717
gix-path = { version = "^0.8.0", path = "../gix-path" }
18-
gix-ref = { version = "^0.29.0", path = "../gix-ref" }
18+
gix-ref = { version = "^0.29.1", path = "../gix-ref" }
1919
gix-hash = { version = "^0.11.1", path = "../gix-hash" }
2020

2121
bstr = { version = "1.3.0", default-features = false, features = ["std", "unicode"] }

gix-ref/CHANGELOG.md

+28-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,32 @@ 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.29.1 (2023-04-29)
9+
10+
### Bug Fixes
11+
12+
- <csr-id-79cc2482aac9408630e38f7441310d7febabe0fe/> symbolic refs are now written with a newline. #(836)
13+
This should help some tools to work correctly.
14+
15+
### Commit Statistics
16+
17+
<csr-read-only-do-not-edit/>
18+
19+
- 1 commit contributed to the release.
20+
- 1 day passed between releases.
21+
- 1 commit was understood as [conventional](https://www.conventionalcommits.org).
22+
- 0 issues like '(#ID)' were seen in commit messages
23+
24+
### Commit Details
25+
26+
<csr-read-only-do-not-edit/>
27+
28+
<details><summary>view details</summary>
29+
30+
* **Uncategorized**
31+
- Symbolic refs are now written with a newline. #(836) ([`79cc248`](https://github.com/Byron/gitoxide/commit/79cc2482aac9408630e38f7441310d7febabe0fe))
32+
</details>
33+
834
## 0.29.0 (2023-04-27)
935

1036
A maintenance release without user-facing changes.
@@ -13,7 +39,7 @@ A maintenance release without user-facing changes.
1339

1440
<csr-read-only-do-not-edit/>
1541

16-
- 2 commits contributed to the release.
42+
- 3 commits contributed to the release.
1743
- 0 commits were understood as [conventional](https://www.conventionalcommits.org).
1844
- 0 issues like '(#ID)' were seen in commit messages
1945

@@ -24,6 +50,7 @@ A maintenance release without user-facing changes.
2450
<details><summary>view details</summary>
2551

2652
* **Uncategorized**
53+
- Release gix-path v0.8.0, gix-glob v0.7.0, gix-attributes v0.12.0, gix-config-value v0.12.0, gix-ref v0.29.0, gix-sec v0.8.0, gix-config v0.22.0, gix-prompt v0.5.0, gix-url v0.18.0, gix-credentials v0.14.0, gix-discover v0.18.0, gix-ignore v0.2.0, gix-pack v0.35.0, gix-odb v0.45.0, gix-transport v0.31.0, gix-protocol v0.32.0, gix-refspec v0.10.1, gix-worktree v0.17.0, gix v0.44.1 ([`7ebc9f7`](https://github.com/Byron/gitoxide/commit/7ebc9f734ec4371dd27daa568c0244185bb49eb5))
2754
- Prepare changelogs prior to release ([`0135158`](https://github.com/Byron/gitoxide/commit/013515897215400539bfd53c25548bd054186ba6))
2855
- Bump gix-path v0.8.0, safety bump 20 crates (gix set to 0.44.1 manually) ([`43ebaf2`](https://github.com/Byron/gitoxide/commit/43ebaf267557218865862538ffc7bdf00558492f))
2956
</details>

gix-ref/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gix-ref"
3-
version = "0.29.0"
3+
version = "0.29.1"
44
repository = "https://github.com/Byron/gitoxide"
55
license = "MIT/Apache-2.0"
66
description = "A crate to handle git references"

gix/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ fast-sha1 = [ "gix-features/fast-sha1" ]
114114
[dependencies]
115115
gix-utils = { version = "^0.1.1", path = "../gix-utils" }
116116
gix-fs = { version = "^0.1.1", path = "../gix-fs" }
117-
gix-ref = { version = "^0.29.0", path = "../gix-ref" }
117+
gix-ref = { version = "^0.29.1", path = "../gix-ref" }
118118
gix-discover = { version = "^0.18.0", path = "../gix-discover" }
119119
gix-tempfile = { version = "^5.0.0", path = "../gix-tempfile", default-features = false, features = ["signals"] }
120120
gix-lock = { version = "^5.0.0", path = "../gix-lock" }

0 commit comments

Comments
 (0)