Skip to content

Commit 850a930

Browse files
author
Stephan Dilly
committed
some cleanup and changelog
1 parent 0fa3e0f commit 850a930

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
## Added
1111
- new `undo-last-commit` command [[@remique](https://github.com/remique)] ([#758](https://github.com/extrawurst/gitui/issues/758))
12+
- taglist: show arrow-symbol on tags not present on origin [[@cruessler](https://github.com/cruessler)] ([#776](https://github.com/extrawurst/gitui/issues/776))
1213

1314
## Fixed
1415
- openssl vendoring broken on macos ([#772](https://github.com/extrawurst/gitui/issues/772))

asyncgit/src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@ mod progress;
3333
mod push;
3434
mod push_tags;
3535
pub mod remote_progress;
36-
///
37-
pub mod remotes;
36+
pub mod remote_tags;
3837
mod revlog;
3938
mod status;
4039
pub mod sync;

asyncgit/src/remotes.rs renamed to asyncgit/src/remote_tags.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
//!
2+
13
use crate::{
24
asyncjob::AsyncJob,
35
error::Result,

src/components/taglist.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ use crate::{
1212
use anyhow::Result;
1313
use asyncgit::{
1414
asyncjob::AsyncSingleJob,
15-
remotes::AsyncRemoteTagsJob,
15+
remote_tags::AsyncRemoteTagsJob,
1616
sync::cred::{extract_username_password, need_username_password},
1717
sync::{get_tags_with_metadata, TagWithMetadata},
1818
AsyncGitNotification, CWD,

0 commit comments

Comments
 (0)