Skip to content

Commit b26c7ef

Browse files
authored
[ISSUE #127]⬆️Upgrade the version to 0.2.0 for the next version's feature development (#128)
1 parent 37b9bfa commit b26c7ef

File tree

6 files changed

+11
-10
lines changed

6 files changed

+11
-10
lines changed

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ members = [
88
resolver = "2"
99

1010
[workspace.package]
11+
version = "0.2.0"
1112
authors = ["mxsm <[email protected]>"]
1213
edition = "2021"
1314
homepage = "https://github.com/mxsm/rocketmq-rust"

rocketmq-common/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rocketmq-common"
3-
version = "0.1.0"
3+
version.workspace = true
44
authors.workspace = true
55
edition.workspace = true
66
homepage.workspace = true

rocketmq-macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rocketmq-macros"
3-
version = "0.1.0"
3+
version.workspace = true
44
authors.workspace = true
55
edition.workspace = true
66
homepage.workspace = true

rocketmq-namesrv/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rocketmq-namesrv"
3-
version = "0.1.0"
3+
version.workspace = true
44
authors.workspace = true
55
edition.workspace = true
66
homepage.workspace = true
@@ -12,9 +12,9 @@ readme = "README.md"
1212
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1313

1414
[dependencies]
15-
rocketmq-rust = { version = "0.1.0", path = "../rocketmq" }
16-
rocketmq-common = { version = "0.1.0", path = "../rocketmq-common" }
17-
rocketmq-remoting = { version = "0.1.0", path = "../rocketmq-remoting" }
15+
rocketmq-rust = { version = "0.2.0", path = "../rocketmq" }
16+
rocketmq-common = { version = "0.2.0", path = "../rocketmq-common" }
17+
rocketmq-remoting = { version = "0.2.0", path = "../rocketmq-remoting" }
1818

1919

2020

rocketmq-remoting/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rocketmq-remoting"
3-
version = "0.1.0"
3+
version.workspace = true
44
authors.workspace = true
55
edition.workspace = true
66
homepage.workspace = true
@@ -12,8 +12,8 @@ readme = "README.md"
1212
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1313

1414
[dependencies]
15-
rocketmq-common = { version = "0.1.0",path = "../rocketmq-common" }
16-
rocketmq-macros = { version = "0.1.0",path = "../rocketmq-macros" }
15+
rocketmq-common = { version = "0.2.0",path = "../rocketmq-common" }
16+
rocketmq-macros = { version = "0.2.0",path = "../rocketmq-macros" }
1717

1818
anyhow.workspace = true
1919
bytes.workspace = true

rocketmq/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rocketmq-rust"
3-
version = "0.1.0"
3+
version.workspace = true
44
authors.workspace = true
55
edition.workspace = true
66
homepage.workspace = true

0 commit comments

Comments
 (0)