release: simple-git v0.2.0 (#1520)

chore: Release

Co-authored-by: github-actions <github-actions@github.com>
This commit is contained in:
github-actions[bot] 2023-12-11 22:37:04 +00:00 committed by GitHub
parent 09debccace
commit f0bfa54944
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

2
Cargo.lock generated
View file

@ -3415,7 +3415,7 @@ dependencies = [
[[package]] [[package]]
name = "simple-git" name = "simple-git"
version = "0.1.1" version = "0.2.0"
dependencies = [ dependencies = [
"compact_str", "compact_str",
"derive_destructure2", "derive_destructure2",

View file

@ -25,7 +25,7 @@ semver = { version = "1.0.17", features = ["serde"] }
serde = { version = "1.0.163", features = ["derive"] } serde = { version = "1.0.163", features = ["derive"] }
serde_json = "1.0.107" serde_json = "1.0.107"
sha2 = "0.10.7" sha2 = "0.10.7"
simple-git = { version = "0.1.1", path = "../simple-git", optional = true } simple-git = { version = "0.2.0", path = "../simple-git", optional = true }
tempfile = "3.5.0" tempfile = "3.5.0"
thiserror = "1.0.40" thiserror = "1.0.40"
tokio = { version = "1.35.0", features = ["rt", "sync"], default-features = false } tokio = { version = "1.35.0", features = ["rt", "sync"], default-features = false }

View file

@ -26,7 +26,7 @@ leon = { version = "2.0.1", path = "../leon" }
maybe-owned = "0.3.4" maybe-owned = "0.3.4"
miette = "5.9.0" miette = "5.9.0"
semver = { version = "1.0.17", features = ["serde"] } semver = { version = "1.0.17", features = ["serde"] }
simple-git = { version = "0.1.1", path = "../simple-git", optional = true } simple-git = { version = "0.2.0", path = "../simple-git", optional = true }
strum = "0.25.0" strum = "0.25.0"
target-lexicon = { version = "0.12.11", features = ["std"] } target-lexicon = { version = "0.12.11", features = ["std"] }
tempfile = "3.5.0" tempfile = "3.5.0"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "simple-git" name = "simple-git"
version = "0.1.1" version = "0.2.0"
edition = "2021" edition = "2021"
description = "The simple git interface for gix suitable for async context (with tokio)" description = "The simple git interface for gix suitable for async context (with tokio)"