Skip to content

Commit 8ff5115

Browse files
committed
(cargo-release) version 0.2.0
1 parent e3d708f commit 8ff5115

File tree

7 files changed

+8
-7
lines changed

7 files changed

+8
-7
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ check: ## Build all code in suitable configurations
8282
cargo check --no-default-features --features lean-termion
8383
cargo check --no-default-features --features max
8484
cargo check --no-default-features --features max-termion
85+
cd git-actor && cargo check
8586
cd gitoxide-core && cargo check \
8687
&& cargo check --features blocking-client \
8788
&& cargo check --features async-client

git-actor/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "git-actor"
3-
version = "0.1.1"
3+
version = "0.2.0"
44
description = "A way to identify git actors"
55
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
66
repository = "https://github.com/Byron/gitoxide"
@@ -20,7 +20,7 @@ all-features = true
2020
[dependencies]
2121
quick-error = "2.0.0"
2222
btoi = "0.4.2"
23-
bstr = { version = "0.2.13", default-features = false }
23+
bstr = { version = "0.2.13", default-features = false, features = ["std"]}
2424
nom = { version = "6", default-features = false, features = ["std", "alloc"]}
2525
itoa = "0.4.6"
2626
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"]}

git-object/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ all-features = true
2121
[dependencies]
2222
git-hash = { version = "^0.4.0", path = "../git-hash" }
2323
git-validate = { version = "^0.3.0", path = "../git-validate" }
24-
git-actor = { version = "^0.1.0", path = "../git-actor" }
24+
git-actor = { version = "^0.2.0", path = "../git-actor" }
2525

2626
quick-error = "2.0.0"
2727
hex = "0.4.2"

git-odb/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@ thiserror = "1.0.26"
3939

4040
[dev-dependencies]
4141
git-testtools = { version = "^0.3", path = "../tests/tools"}
42-
git-actor = { version = "^0.1.0", path = "../git-actor" }
42+
git-actor = { version = "^0.2.0", path = "../git-actor" }
4343
pretty_assertions = "0.7.1"

git-ref/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ git-features = { version = "^0.15.0", path = "../git-features", features = ["wal
2828
git-hash = { version = "^0.4.0", path = "../git-hash" }
2929
git-object = { version = "^0.10.0", path = "../git-object" }
3030
git-validate = { version = "^0.3.0", path = "../git-validate" }
31-
git-actor = { version = "^0.1.0", path = "../git-actor" }
31+
git-actor = { version = "^0.2.0", path = "../git-actor" }
3232
git-lock = { version = "^0.1.0", path = "../git-lock" }
3333
git-tempfile = { version = "^0.4.0", path = "../git-tempfile" }
3434

git-repository/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ git-tempfile = { version = "^0.4.0", path = "../git-tempfile" }
3939
git-odb = { version = "^0.16", path = "../git-odb" }
4040
git-hash = { version = "^0.4.0", path = "../git-hash" }
4141
git-object = { version = "^0.10", path = "../git-object" }
42-
git-actor = { version = "^0.1", path = "../git-actor" }
42+
git-actor = { version = "^0.2", path = "../git-actor" }
4343
git-pack = { version = "^0.2", path = "../git-pack" }
4444

4545
git-url = { version = "0.3.0", path = "../git-url", optional = true }

0 commit comments

Comments
 (0)