some cleanup and changelog

This commit is contained in:
Stephan Dilly 2021-06-12 22:41:10 +02:00
parent 0fa3e0f5a8
commit 850a930053
4 changed files with 5 additions and 3 deletions

View File

@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Added
- new `undo-last-commit` command [[@remique](https://github.com/remique)] ([#758](https://github.com/extrawurst/gitui/issues/758))
- taglist: show arrow-symbol on tags not present on origin [[@cruessler](https://github.com/cruessler)] ([#776](https://github.com/extrawurst/gitui/issues/776))
## Fixed
- openssl vendoring broken on macos ([#772](https://github.com/extrawurst/gitui/issues/772))

View File

@ -33,8 +33,7 @@ mod progress;
mod push;
mod push_tags;
pub mod remote_progress;
///
pub mod remotes;
pub mod remote_tags;
mod revlog;
mod status;
pub mod sync;

View File

@ -1,3 +1,5 @@
//!
use crate::{
asyncjob::AsyncJob,
error::Result,

View File

@ -12,7 +12,7 @@ use crate::{
use anyhow::Result;
use asyncgit::{
asyncjob::AsyncSingleJob,
remotes::AsyncRemoteTagsJob,
remote_tags::AsyncRemoteTagsJob,
sync::cred::{extract_username_password, need_username_password},
sync::{get_tags_with_metadata, TagWithMetadata},
AsyncGitNotification, CWD,