Skip to content

Commit 6dcb717

Browse files
authored
bump version (#214)
# Goal The goal of this PR is bump the version so we can have a clean release Closes #211
1 parent 77c0d75 commit 6dcb717

File tree

9 files changed

+25
-25
lines changed

9 files changed

+25
-25
lines changed

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bridge/common/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "dsnp-graph-sdk-common"
3-
version = "2.0.0"
3+
version = "2.0.1"
44
edition = "2021"
55
license = "Apache-2.0"
66
publish = false
77

88
[dependencies]
9-
dsnp-graph-core = { version = "2.0.0", path = "../../core" }
10-
dsnp-graph-config = { version = "2.0.0", path = "../../config" }
9+
dsnp-graph-core = { version = "2.0.1", path = "../../core" }
10+
dsnp-graph-config = { version = "2.0.1", path = "../../config" }
1111
libc = "0.2.155"
1212
protobuf = { version = "3.5.0", features = ["with-bytes"] }

bridge/ffi/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dsnp-graph-sdk-ffi"
3-
version = "2.0.0"
3+
version = "2.0.1"
44
edition = "2021"
55
license = "Apache-2.0"
66
publish = false
@@ -10,8 +10,8 @@ name = "dsnp_graph_sdk_ffi"
1010
crate-type = ["staticlib"]
1111

1212
[dependencies]
13-
dsnp-graph-core = { version = "2.0.0", path = "../../core" }
14-
dsnp-graph-config = { version = "2.0.0", path = "../../config" }
13+
dsnp-graph-core = { version = "2.0.1", path = "../../core" }
14+
dsnp-graph-config = { version = "2.0.1", path = "../../config" }
1515
libc = "0.2.155"
1616
lazy_static = "1.5.0"
1717
anyhow = "1.0.86"

bridge/jni/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dsnp-graph-sdk-jni"
3-
version = "2.0.0"
3+
version = "2.0.1"
44
edition = "2021"
55
license = "Apache-2.0"
66
publish = false
@@ -10,9 +10,9 @@ name = "dsnp_graph_sdk_jni"
1010
crate-type = ["cdylib"]
1111

1212
[dependencies]
13-
dsnp-graph-core = { version = "2.0.0", path = "../../core" }
14-
dsnp-graph-config = { version = "2.0.0", path = "../../config" }
15-
dsnp-graph-sdk-common = { version = "2.0.0", path = "../common" }
13+
dsnp-graph-core = { version = "2.0.1", path = "../../core" }
14+
dsnp-graph-config = { version = "2.0.1", path = "../../config" }
15+
dsnp-graph-sdk-common = { version = "2.0.1", path = "../common" }
1616
jni = "0.21.1"
1717
cfg-if = "1.0.0"
1818
log = { version = "^0.4.22", features = ["std", "max_level_debug", "release_max_level_debug"] }

bridge/node/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dsnp-graph-sdk-node"
3-
version = "2.0.0"
3+
version = "2.0.1"
44
edition = "2021"
55
license = "Apache-2.0"
66
publish = false
@@ -11,8 +11,8 @@ name = "dsnp_graph_sdk_node"
1111
crate-type = ["cdylib"]
1212

1313
[dependencies]
14-
dsnp-graph-core = { version = "2.0.0", path = "../../core" }
15-
dsnp-graph-config = { version = "2.0.0", path = "../../config" }
14+
dsnp-graph-core = { version = "2.0.1", path = "../../core" }
15+
dsnp-graph-config = { version = "2.0.1", path = "../../config" }
1616
neon = { version = "1.0.0", default-features = false, features = ["napi-6"] }
1717
serde = { version = "1.0.204", features = ["derive"] }
1818
serde_json = "1.0.122"

bridge/node/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bridge/node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@projectlibertylabs/graph-sdk",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"author": "Project Liberty LLC",
55
"license": "Apache-2.0",
66
"description": "dsnp-graph-sdk-node",

config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ homepage = "https://spec.dsnp.org"
55
license = "Apache-2.0"
66
publish = false
77
repository = "https://github.com/ProjectLibertyLabs/graph-sdk/"
8-
version = "2.0.0"
8+
version = "2.0.1"
99

1010
[lib]
1111
name = "dsnp_graph_config"

core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ homepage = "https://spec.dsnp.org"
55
license = "Apache-2.0"
66
publish = false
77
repository = "https://github.com/ProjectLibertyLabs/graph-sdk/"
8-
version = "2.0.0"
8+
version = "2.0.1"
99

1010
[lib]
1111
name = "dsnp_graph_core"
@@ -16,7 +16,7 @@ doctest = false
1616
anyhow = "1.0.86"
1717
apache-avro = { version = "0.17.0", features = ["snappy"] }
1818
dryoc = "0.5.4"
19-
dsnp-graph-config = { version = "2.0.0", path = "../config" }
19+
dsnp-graph-config = { version = "2.0.1", path = "../config" }
2020
lazy_static = "1.5.0"
2121
log = { version = "^0.4.22", features = ["std", "max_level_debug", "release_max_level_debug"] }
2222
log-result-proc-macro = { path = "../log-result-proc-macro" }

0 commit comments

Comments
 (0)