Skip to content

Commit

Permalink
(cargo-release) version 0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Apr 30, 2021
1 parent 35b74d2 commit 5c791af
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion experiments/object-access/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2018"

[dependencies]
anyhow = "1"
git-odb = { version = "0.12", path = "../../git-odb", features = ["pack-cache-lru-static", "pack-cache-lru-dynamic"] }
git-odb = { version = "^0.13", path = "../../git-odb", features = ["pack-cache-lru-static", "pack-cache-lru-dynamic"] }
git-hash = { version = "^0.3", path = "../../git-hash" }
git2 = "0.13"
rayon = "1.5.0"
2 changes: 1 addition & 1 deletion experiments/traversal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2018"

[dependencies]
anyhow = "1"
git-odb = { version = "0.12", path = "../../git-odb", features = ["pack-cache-lru-static", "pack-cache-lru-dynamic"] }
git-odb = { version = "^0.13", path = "../../git-odb", features = ["pack-cache-lru-static", "pack-cache-lru-dynamic"] }
git-traverse = { version = "0.1", path = "../../git-traverse" }
git-hash = { version = "^0.3", path = "../../git-hash" }
git-object = { version = "^0.8", path = "../../git-object" }
Expand Down
2 changes: 1 addition & 1 deletion git-diff/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ git-object = { version = "^0.8", path = "../git-object" }
quick-error = "2.0.0"

[dev-dependencies]
git-odb = { version = "0.12", path = "../git-odb" }
git-odb = { version = "^0.13", path = "../git-odb" }
git-traverse = { version = "0.1", path = "../git-traverse" }
git-testtools = { path = "../tests/tools" }
2 changes: 1 addition & 1 deletion git-odb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "git-odb"
version = "0.12.0"
version = "0.13.0"
repository = "https://github.com/Byron/gitoxide"
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
license = "MIT/Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion git-packetline/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ hex = "0.4.2"
bstr = { version = "0.2.13", default-features = false, features = ["std"] }

[dev-dependencies]
git-odb = { version = "^0.12.0", path = "../git-odb" }
git-odb = { version = "^0.13.0", path = "../git-odb" }
2 changes: 1 addition & 1 deletion git-traverse/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ quick-error = "2.0.0"

[dev-dependencies]
git-testtools = { path = "../tests/tools" }
git-odb = { version = "0.12", path = "../git-odb" }
git-odb = { version = "^0.13", path = "../git-odb" }
2 changes: 1 addition & 1 deletion gitoxide-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ all-features = true
git-repository = { version = "^0.5.0", path = "../git-repository" }
git-object = { version = "^0.8.0", path = "../git-object" }
git-hash = { version = "^0.3.0", path = "../git-hash" }
git-odb = { version = "^0.12.0", path = "../git-odb", features = ["pack-cache-lru-static"] }
git-odb = { version = "^0.13.0", path = "../git-odb", features = ["pack-cache-lru-static"] }
git-protocol = { version = "^0.6.0", path = "../git-protocol" }
git-features = { version = "^0.13.0", path = "../git-features" }
git-commitgraph = { version = "^0.4.0", path = "../git-commitgraph" }
Expand Down

0 comments on commit 5c791af

Please sign in to comment.