mirror of
https://github.com/gitui-org/gitui
synced 2026-05-23 08:58:21 +00:00
version bumps
This commit is contained in:
parent
2b7d7f467b
commit
196fe4ab43
4 changed files with 8 additions and 6 deletions
|
|
@ -5,7 +5,9 @@ All notable changes to this project will be documented in this file.
|
|||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## Unreleased
|
||||
<!-- ## Unreleased -->
|
||||
|
||||
## [0.11.0] - 2020-12-20
|
||||
|
||||
### Added
|
||||
- added windows scoop recipe ([#164](https://github.com/extrawurst/gitui/issues/164))
|
||||
|
|
|
|||
4
Cargo.lock
generated
4
Cargo.lock
generated
|
|
@ -43,7 +43,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "asyncgit"
|
||||
version = "0.10.0"
|
||||
version = "0.11.0"
|
||||
dependencies = [
|
||||
"crossbeam-channel",
|
||||
"git2",
|
||||
|
|
@ -331,7 +331,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "gitui"
|
||||
version = "0.10.1"
|
||||
version = "0.11.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"asyncgit",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "gitui"
|
||||
version = "0.10.1"
|
||||
version = "0.11.0"
|
||||
authors = ["Stephan Dilly <dilly.stephan@gmail.com>"]
|
||||
description = "blazing fast terminal-ui for git"
|
||||
edition = "2018"
|
||||
|
|
@ -20,7 +20,7 @@ keywords = [
|
|||
|
||||
[dependencies]
|
||||
scopetime = { path = "./scopetime", version = "0.1" }
|
||||
asyncgit = { path = "./asyncgit", version = "0.10" }
|
||||
asyncgit = { path = "./asyncgit", version = "0.11" }
|
||||
crossterm = { version = "0.18", features = [ "serde" ] }
|
||||
clap = { version = "2.33", default-features = false }
|
||||
tui = { version = "0.13", default-features = false, features = ['crossterm', 'serde'] }
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "asyncgit"
|
||||
version = "0.10.0"
|
||||
version = "0.11.0"
|
||||
authors = ["Stephan Dilly <dilly.stephan@gmail.com>"]
|
||||
edition = "2018"
|
||||
description = "allow using git2 in a asynchronous context"
|
||||
|
|
|
|||
Loading…
Reference in a new issue