Bump version 0.2.0 (#395)

Signed-off-by: Andy Lok <andylokandy@hotmail.com>
This commit is contained in:
Andy Lok 2023-06-27 16:00:34 +08:00 committed by GitHub
parent ed22f868ee
commit 8875c96a3b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 15 additions and 15 deletions

View File

@ -1,6 +1,6 @@
[package] [package]
name = "tikv-client" name = "tikv-client"
version = "0.1.0" version = "0.2.0"
keywords = ["TiKV", "KV", "distributed-systems"] keywords = ["TiKV", "KV", "distributed-systems"]
license = "Apache-2.0" license = "Apache-2.0"
authors = ["The TiKV Project Authors"] authors = ["The TiKV Project Authors"]
@ -55,10 +55,10 @@ thiserror = "1"
tokio = { version = "1", features = [ "sync", "rt-multi-thread", "macros" ] } tokio = { version = "1", features = [ "sync", "rt-multi-thread", "macros" ] }
async-recursion = "0.3" async-recursion = "0.3"
tikv-client-common = { version = "0.1.0", path = "tikv-client-common" } tikv-client-common = { version = "0.2.0", path = "tikv-client-common" }
tikv-client-pd = { version = "0.1.0", path = "tikv-client-pd" } tikv-client-pd = { version = "0.2.0", path = "tikv-client-pd" }
tikv-client-proto = { version = "0.1.0", path = "tikv-client-proto" } tikv-client-proto = { version = "0.2.0", path = "tikv-client-proto" }
tikv-client-store = { version = "0.1.0", path = "tikv-client-store" } tikv-client-store = { version = "0.2.0", path = "tikv-client-store" }
[dev-dependencies] [dev-dependencies]

View File

@ -17,7 +17,7 @@ The TiKV client is a Rust library (crate). To use this crate in your project, ad
```toml ```toml
[dependencies] [dependencies]
tikv-client = "0.1.0" tikv-client = "0.2.0"
``` ```
### Prerequisites ### Prerequisites

View File

@ -1,6 +1,6 @@
[package] [package]
name = "tikv-client-common" name = "tikv-client-common"
version = "0.1.0" version = "0.2.0"
edition = "2018" edition = "2018"
license = "Apache-2.0" license = "Apache-2.0"
authors = ["The TiKV Project Authors"] authors = ["The TiKV Project Authors"]
@ -19,7 +19,7 @@ lazy_static = "1"
log = "0.4" log = "0.4"
regex = "1" regex = "1"
semver = "1" semver = "1"
tikv-client-proto = { version = "0.1.0", path = "../tikv-client-proto" } tikv-client-proto = { version = "0.2.0", path = "../tikv-client-proto" }
tokio = "1" tokio = "1"
[dev-dependencies] [dev-dependencies]

View File

@ -1,6 +1,6 @@
[package] [package]
name = "tikv-client-pd" name = "tikv-client-pd"
version = "0.1.0" version = "0.2.0"
edition = "2018" edition = "2018"
license = "Apache-2.0" license = "Apache-2.0"
authors = ["The TiKV Project Authors"] authors = ["The TiKV Project Authors"]
@ -16,8 +16,8 @@ async-trait = "0.1"
futures = { version = "0.3", features = ["compat", "async-await", "thread-pool"] } futures = { version = "0.3", features = ["compat", "async-await", "thread-pool"] }
grpcio = { version = "0.10", default-features = false } grpcio = { version = "0.10", default-features = false }
log = "0.4" log = "0.4"
tikv-client-common = { version = "0.1.0", path = "../tikv-client-common" } tikv-client-common = { version = "0.2.0", path = "../tikv-client-common" }
tikv-client-proto = { version = "0.1.0", path = "../tikv-client-proto" } tikv-client-proto = { version = "0.2.0", path = "../tikv-client-proto" }
[dev-dependencies] [dev-dependencies]
clap = "2" clap = "2"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "tikv-client-proto" name = "tikv-client-proto"
version = "0.1.0" version = "0.2.0"
edition = "2018" edition = "2018"
license = "Apache-2.0" license = "Apache-2.0"
authors = ["The TiKV Project Authors"] authors = ["The TiKV Project Authors"]

View File

@ -1,6 +1,6 @@
[package] [package]
name = "tikv-client-store" name = "tikv-client-store"
version = "0.1.0" version = "0.2.0"
edition = "2018" edition = "2018"
license = "Apache-2.0" license = "Apache-2.0"
authors = ["The TiKV Project Authors"] authors = ["The TiKV Project Authors"]
@ -17,5 +17,5 @@ derive-new = "0.5"
futures = { version = "0.3", features = ["compat", "async-await", "thread-pool"] } futures = { version = "0.3", features = ["compat", "async-await", "thread-pool"] }
grpcio = { version = "0.10", default-features = false } grpcio = { version = "0.10", default-features = false }
log = "0.4" log = "0.4"
tikv-client-common = { version = "0.1.0", path = "../tikv-client-common" } tikv-client-common = { version = "0.2.0", path = "../tikv-client-common" }
tikv-client-proto = { version = "0.1.0", path = "../tikv-client-proto" } tikv-client-proto = { version = "0.2.0", path = "../tikv-client-proto" }