Bump kvstore version to 0.13.0 to match all other solana crates (#3334)

This commit is contained in:
Michael Vines 2019-03-15 17:05:24 -07:00 committed by Mark
parent 00f005af25
commit ad12b0efce
3 changed files with 4 additions and 4 deletions

4
Cargo.lock generated
View File

@ -2029,7 +2029,7 @@ dependencies = [
"solana-budget-program 0.13.0",
"solana-client 0.13.0",
"solana-drone 0.13.0",
"solana-kvstore 0.0.1",
"solana-kvstore 0.13.0",
"solana-logger 0.13.0",
"solana-metrics 0.13.0",
"solana-netutil 0.13.0",
@ -2259,7 +2259,7 @@ dependencies = [
[[package]]
name = "solana-kvstore"
version = "0.0.1"
version = "0.13.0"
dependencies = [
"bincode 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
"byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@ -48,7 +48,7 @@ serde_json = "1.0.39"
solana-budget-api = { path = "../programs/budget_api", version = "0.13.0" }
solana-client = { path = "../client", version = "0.13.0" }
solana-drone = { path = "../drone", version = "0.13.0" }
solana-kvstore = { path = "../kvstore", version = "0.0.1", optional = true }
solana-kvstore = { path = "../kvstore", version = "0.13.0", optional = true }
solana-logger = { path = "../logger", version = "0.13.0" }
solana-metrics = { path = "../metrics", version = "0.13.0" }
solana-netutil = { path = "../netutil", version = "0.13.0" }

View File

@ -1,7 +1,7 @@
[package]
name = "solana-kvstore"
description = "Embedded Key-Value store for solana"
version = "0.0.1"
version = "0.13.0"
homepage = "https://solana.com/"
repository = "https://github.com/solana-labs/solana"
authors = ["Solana Maintainers <maintainers@solana.com>"]