Skip to content

Commit 8875c96

Browse files
authored
Bump version 0.2.0 (#395)
Signed-off-by: Andy Lok <andylokandy@hotmail.com>
1 parent ed22f86 commit 8875c96

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tikv-client"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
keywords = ["TiKV", "KV", "distributed-systems"]
55
license = "Apache-2.0"
66
authors = ["The TiKV Project Authors"]
@@ -55,10 +55,10 @@ thiserror = "1"
5555
tokio = { version = "1", features = [ "sync", "rt-multi-thread", "macros" ] }
5656
async-recursion = "0.3"
5757

58-
tikv-client-common = { version = "0.1.0", path = "tikv-client-common" }
59-
tikv-client-pd = { version = "0.1.0", path = "tikv-client-pd" }
60-
tikv-client-proto = { version = "0.1.0", path = "tikv-client-proto" }
61-
tikv-client-store = { version = "0.1.0", path = "tikv-client-store" }
58+
tikv-client-common = { version = "0.2.0", path = "tikv-client-common" }
59+
tikv-client-pd = { version = "0.2.0", path = "tikv-client-pd" }
60+
tikv-client-proto = { version = "0.2.0", path = "tikv-client-proto" }
61+
tikv-client-store = { version = "0.2.0", path = "tikv-client-store" }
6262

6363

6464
[dev-dependencies]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The TiKV client is a Rust library (crate). To use this crate in your project, ad
1717

1818
```toml
1919
[dependencies]
20-
tikv-client = "0.1.0"
20+
tikv-client = "0.2.0"
2121
```
2222

2323
### Prerequisites

tikv-client-common/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tikv-client-common"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2018"
55
license = "Apache-2.0"
66
authors = ["The TiKV Project Authors"]
@@ -19,7 +19,7 @@ lazy_static = "1"
1919
log = "0.4"
2020
regex = "1"
2121
semver = "1"
22-
tikv-client-proto = { version = "0.1.0", path = "../tikv-client-proto" }
22+
tikv-client-proto = { version = "0.2.0", path = "../tikv-client-proto" }
2323
tokio = "1"
2424

2525
[dev-dependencies]

tikv-client-pd/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tikv-client-pd"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2018"
55
license = "Apache-2.0"
66
authors = ["The TiKV Project Authors"]
@@ -16,8 +16,8 @@ async-trait = "0.1"
1616
futures = { version = "0.3", features = ["compat", "async-await", "thread-pool"] }
1717
grpcio = { version = "0.10", default-features = false }
1818
log = "0.4"
19-
tikv-client-common = { version = "0.1.0", path = "../tikv-client-common" }
20-
tikv-client-proto = { version = "0.1.0", path = "../tikv-client-proto" }
19+
tikv-client-common = { version = "0.2.0", path = "../tikv-client-common" }
20+
tikv-client-proto = { version = "0.2.0", path = "../tikv-client-proto" }
2121

2222
[dev-dependencies]
2323
clap = "2"

tikv-client-proto/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tikv-client-proto"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2018"
55
license = "Apache-2.0"
66
authors = ["The TiKV Project Authors"]

tikv-client-store/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tikv-client-store"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2018"
55
license = "Apache-2.0"
66
authors = ["The TiKV Project Authors"]
@@ -17,5 +17,5 @@ derive-new = "0.5"
1717
futures = { version = "0.3", features = ["compat", "async-await", "thread-pool"] }
1818
grpcio = { version = "0.10", default-features = false }
1919
log = "0.4"
20-
tikv-client-common = { version = "0.1.0", path = "../tikv-client-common" }
21-
tikv-client-proto = { version = "0.1.0", path = "../tikv-client-proto" }
20+
tikv-client-common = { version = "0.2.0", path = "../tikv-client-common" }
21+
tikv-client-proto = { version = "0.2.0", path = "../tikv-client-proto" }

0 commit comments

Comments
 (0)