Skip to content

Commit 7ec6227

Browse files
authored
prepare for rc (#2479)
1 parent f505970 commit 7ec6227

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## [0.27.0-rc.1] - 2024-01-14
11+
12+
**manage remotes**
13+
14+
![add-remote](assets/add-remote.png)
15+
1016
### Breaking Changes
1117
* use default shell instead of bash on Unix-like OS [[@yerke](https://github.com/yerke)] ([#2343](https://github.com/extrawurst/gitui/pull/2343))
1218

@@ -15,9 +21,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1521
* Set `CREATE_NO_WINDOW` flag when executing Git hooks on Windows ([#2371](https://github.com/extrawurst/gitui/pull/2371))
1622

1723
### Added
24+
* add popups for viewing, adding, updating and removing remotes [[@robin-thoene](https://github.com/robin-thoene)] ([#2172](https://github.com/extrawurst/gitui/issues/2172))
1825
* support for "Copy Path" action in WSL [[@johnDeSilencio](https://github.com/johnDeSilencio)] ([#2413](https://github.com/extrawurst/gitui/pull/2413))
1926
* help popup scrollbar [[@wugeer](https://github.com/wugeer)](https://github.com/extrawurst/gitui/pull/2388))
20-
* add popups for viewing, adding, updating and removing remotes [[@robin-thoene](https://github.com/robin-thoene)] ([#2172](https://github.com/extrawurst/gitui/issues/2172))
2127

2228
## [0.26.3] - 2024-06-02
2329

Cargo.lock

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

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gitui"
3-
version = "0.26.3"
3+
version = "0.27.0-rc.1"
44
authors = ["extrawurst <[email protected]>"]
55
description = "blazing fast terminal-ui for git"
66
edition = "2021"
@@ -16,7 +16,7 @@ build = "build.rs"
1616

1717
[dependencies]
1818
anyhow = "1.0"
19-
asyncgit = { path = "./asyncgit", version = "0.26", default-features = false }
19+
asyncgit = { path = "./asyncgit", version = "0.27.0", default-features = false }
2020
backtrace = "0.3"
2121
bitflags = "2.7"
2222
bugreport = "0.5.1"

assets/add-remote.png

130 KB
Loading

asyncgit/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "asyncgit"
3-
version = "0.26.3"
3+
version = "0.27.0"
44
authors = ["extrawurst <[email protected]>"]
55
edition = "2021"
66
description = "allow using git2 in a asynchronous context"

0 commit comments

Comments
 (0)