Skip to content

Commit

Permalink
Bump version 0.2.0 (tikv#395)
Browse files Browse the repository at this point in the history
Signed-off-by: Andy Lok <[email protected]>
  • Loading branch information
andylokandy committed Jun 27, 2023
1 parent ed22f86 commit 8875c96
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tikv-client"
version = "0.1.0"
version = "0.2.0"
keywords = ["TiKV", "KV", "distributed-systems"]
license = "Apache-2.0"
authors = ["The TiKV Project Authors"]
Expand Down Expand Up @@ -55,10 +55,10 @@ thiserror = "1"
tokio = { version = "1", features = [ "sync", "rt-multi-thread", "macros" ] }
async-recursion = "0.3"

tikv-client-common = { version = "0.1.0", path = "tikv-client-common" }
tikv-client-pd = { version = "0.1.0", path = "tikv-client-pd" }
tikv-client-proto = { version = "0.1.0", path = "tikv-client-proto" }
tikv-client-store = { version = "0.1.0", path = "tikv-client-store" }
tikv-client-common = { version = "0.2.0", path = "tikv-client-common" }
tikv-client-pd = { version = "0.2.0", path = "tikv-client-pd" }
tikv-client-proto = { version = "0.2.0", path = "tikv-client-proto" }
tikv-client-store = { version = "0.2.0", path = "tikv-client-store" }


[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ The TiKV client is a Rust library (crate). To use this crate in your project, ad

```toml
[dependencies]
tikv-client = "0.1.0"
tikv-client = "0.2.0"
```

### Prerequisites
Expand Down
4 changes: 2 additions & 2 deletions tikv-client-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tikv-client-common"
version = "0.1.0"
version = "0.2.0"
edition = "2018"
license = "Apache-2.0"
authors = ["The TiKV Project Authors"]
Expand All @@ -19,7 +19,7 @@ lazy_static = "1"
log = "0.4"
regex = "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"

[dev-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions tikv-client-pd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tikv-client-pd"
version = "0.1.0"
version = "0.2.0"
edition = "2018"
license = "Apache-2.0"
authors = ["The TiKV Project Authors"]
Expand All @@ -16,8 +16,8 @@ async-trait = "0.1"
futures = { version = "0.3", features = ["compat", "async-await", "thread-pool"] }
grpcio = { version = "0.10", default-features = false }
log = "0.4"
tikv-client-common = { version = "0.1.0", path = "../tikv-client-common" }
tikv-client-proto = { version = "0.1.0", path = "../tikv-client-proto" }
tikv-client-common = { version = "0.2.0", path = "../tikv-client-common" }
tikv-client-proto = { version = "0.2.0", path = "../tikv-client-proto" }

[dev-dependencies]
clap = "2"
Expand Down
2 changes: 1 addition & 1 deletion tikv-client-proto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tikv-client-proto"
version = "0.1.0"
version = "0.2.0"
edition = "2018"
license = "Apache-2.0"
authors = ["The TiKV Project Authors"]
Expand Down
6 changes: 3 additions & 3 deletions tikv-client-store/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tikv-client-store"
version = "0.1.0"
version = "0.2.0"
edition = "2018"
license = "Apache-2.0"
authors = ["The TiKV Project Authors"]
Expand All @@ -17,5 +17,5 @@ derive-new = "0.5"
futures = { version = "0.3", features = ["compat", "async-await", "thread-pool"] }
grpcio = { version = "0.10", default-features = false }
log = "0.4"
tikv-client-common = { version = "0.1.0", path = "../tikv-client-common" }
tikv-client-proto = { version = "0.1.0", path = "../tikv-client-proto" }
tikv-client-common = { version = "0.2.0", path = "../tikv-client-common" }
tikv-client-proto = { version = "0.2.0", path = "../tikv-client-proto" }

0 comments on commit 8875c96

Please sign in to comment.