Skip to content

Commit 066571e

Browse files
committed
Release 0.3.0
1 parent 5b1709e commit 066571e

File tree

3 files changed

+9
-18
lines changed

3 files changed

+9
-18
lines changed

Cargo.lock

Lines changed: 6 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
22
name = "gitprompt-rs"
33
description = "A very simple Git prompt"
4-
version = "0.2.0"
4+
version = "0.3.0"
55
authors = ["Dan Elkouby <streetwalkermc@gmail.com>"]
66
license = "MPL-2.0"
77
repository = "https://github.com/Streetwalrus/gitprompt-rs"
88

99
[dependencies]
10-
"lazy_static" = "1.1.0"
10+
"lazy_static" = "1.4.0"

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ fn parse_porcelain2(data: String) -> Option<GitStatus> {
130130
Some(status)
131131
}
132132

133-
fn main() -> Result<(), Box<Error>> {
133+
fn main() -> Result<(), Box<dyn Error>> {
134134
let output = process::Command::new("git")
135135
.args(&["status", "--porcelain=v2", "-z", "--branch", "--untracked-files=all"])
136136
.stdin(process::Stdio::null())

0 commit comments

Comments
 (0)