Skip to content

Commit

Permalink
bump version to 2
Browse files Browse the repository at this point in the history
  • Loading branch information
aramikm committed Aug 22, 2024
1 parent 64b3dc8 commit 39b32d8
Showing 9 changed files with 25 additions and 25 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions bridge/common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "dsnp-graph-sdk-common"
version = "1.1.4"
version = "2.0.0"
edition = "2021"
license = "Apache-2.0"
publish = false

[dependencies]
dsnp-graph-core = { version = "1.1.4", path = "../../core" }
dsnp-graph-config = { version = "1.1.4", path = "../../config" }
dsnp-graph-core = { version = "2.0.0", path = "../../core" }
dsnp-graph-config = { version = "2.0.0", path = "../../config" }
libc = "0.2.155"
protobuf = { version = "3.5.0", features = ["with-bytes"] }
6 changes: 3 additions & 3 deletions bridge/ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dsnp-graph-sdk-ffi"
version = "1.1.4"
version = "2.0.0"
edition = "2021"
license = "Apache-2.0"
publish = false
@@ -10,8 +10,8 @@ name = "dsnp_graph_sdk_ffi"
crate-type = ["staticlib"]

[dependencies]
dsnp-graph-core = { version = "1.1.4", path = "../../core" }
dsnp-graph-config = { version = "1.1.4", path = "../../config" }
dsnp-graph-core = { version = "2.0.0", path = "../../core" }
dsnp-graph-config = { version = "2.0.0", path = "../../config" }
libc = "0.2.155"
lazy_static = "1.5.0"
anyhow = "1.0.86"
8 changes: 4 additions & 4 deletions bridge/jni/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dsnp-graph-sdk-jni"
version = "1.1.4"
version = "2.0.0"
edition = "2021"
license = "Apache-2.0"
publish = false
@@ -10,9 +10,9 @@ name = "dsnp_graph_sdk_jni"
crate-type = ["cdylib"]

[dependencies]
dsnp-graph-core = { version = "1.1.4", path = "../../core" }
dsnp-graph-config = { version = "1.1.4", path = "../../config" }
dsnp-graph-sdk-common = { version = "1.1.4", path = "../common" }
dsnp-graph-core = { version = "2.0.0", path = "../../core" }
dsnp-graph-config = { version = "2.0.0", path = "../../config" }
dsnp-graph-sdk-common = { version = "2.0.0", path = "../common" }
jni = "0.21.1"
cfg-if = "1.0.0"
log = { version = "^0.4.22", features = ["std", "max_level_debug", "release_max_level_debug"] }
6 changes: 3 additions & 3 deletions bridge/node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dsnp-graph-sdk-node"
version = "1.1.4"
version = "2.0.0"
edition = "2021"
license = "Apache-2.0"
publish = false
@@ -11,8 +11,8 @@ name = "dsnp_graph_sdk_node"
crate-type = ["cdylib"]

[dependencies]
dsnp-graph-core = { version = "1.1.4", path = "../../core" }
dsnp-graph-config = { version = "1.1.4", path = "../../config" }
dsnp-graph-core = { version = "2.0.0", path = "../../core" }
dsnp-graph-config = { version = "2.0.0", path = "../../config" }
neon = { version = "1.0.0", default-features = false, features = ["napi-6"] }
serde = { version = "1.0.204", features = ["derive"] }
serde_json = "1.0.122"
4 changes: 2 additions & 2 deletions bridge/node/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bridge/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@projectlibertylabs/graph-sdk",
"version": "1.1.4",
"version": "2.0.0",
"author": "Project Liberty LLC",
"license": "Apache-2.0",
"description": "dsnp-graph-sdk-node",
2 changes: 1 addition & 1 deletion config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ homepage = "https://spec.dsnp.org"
license = "Apache-2.0"
publish = false
repository = "https://github.com/ProjectLibertyLabs/graph-sdk/"
version = "1.1.4"
version = "2.0.0"

[lib]
name = "dsnp_graph_config"
4 changes: 2 additions & 2 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ homepage = "https://spec.dsnp.org"
license = "Apache-2.0"
publish = false
repository = "https://github.com/ProjectLibertyLabs/graph-sdk/"
version = "1.1.4"
version = "2.0.0"

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

0 comments on commit 39b32d8

Please sign in to comment.