Skip to content

Commit

Permalink
bump version (#214)
Browse files Browse the repository at this point in the history
# Goal
The goal of this PR is bump the version so we can have a clean release

Closes #211
  • Loading branch information
aramikm authored Aug 26, 2024
1 parent 77c0d75 commit 6dcb717
Show file tree
Hide file tree
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 = "2.0.0"
version = "2.0.1"
edition = "2021"
license = "Apache-2.0"
publish = false

[dependencies]
dsnp-graph-core = { version = "2.0.0", path = "../../core" }
dsnp-graph-config = { version = "2.0.0", path = "../../config" }
dsnp-graph-core = { version = "2.0.1", path = "../../core" }
dsnp-graph-config = { version = "2.0.1", 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 = "2.0.0"
version = "2.0.1"
edition = "2021"
license = "Apache-2.0"
publish = false
Expand All @@ -10,8 +10,8 @@ name = "dsnp_graph_sdk_ffi"
crate-type = ["staticlib"]

[dependencies]
dsnp-graph-core = { version = "2.0.0", path = "../../core" }
dsnp-graph-config = { version = "2.0.0", path = "../../config" }
dsnp-graph-core = { version = "2.0.1", path = "../../core" }
dsnp-graph-config = { version = "2.0.1", 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 = "2.0.0"
version = "2.0.1"
edition = "2021"
license = "Apache-2.0"
publish = false
Expand All @@ -10,9 +10,9 @@ name = "dsnp_graph_sdk_jni"
crate-type = ["cdylib"]

[dependencies]
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" }
dsnp-graph-core = { version = "2.0.1", path = "../../core" }
dsnp-graph-config = { version = "2.0.1", path = "../../config" }
dsnp-graph-sdk-common = { version = "2.0.1", 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"] }
Expand Down
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 = "2.0.0"
version = "2.0.1"
edition = "2021"
license = "Apache-2.0"
publish = false
Expand All @@ -11,8 +11,8 @@ name = "dsnp_graph_sdk_node"
crate-type = ["cdylib"]

[dependencies]
dsnp-graph-core = { version = "2.0.0", path = "../../core" }
dsnp-graph-config = { version = "2.0.0", path = "../../config" }
dsnp-graph-core = { version = "2.0.1", path = "../../core" }
dsnp-graph-config = { version = "2.0.1", 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"
Expand Down
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": "2.0.0",
"version": "2.0.1",
"author": "Project Liberty LLC",
"license": "Apache-2.0",
"description": "dsnp-graph-sdk-node",
Expand Down
2 changes: 1 addition & 1 deletion config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ homepage = "https://spec.dsnp.org"
license = "Apache-2.0"
publish = false
repository = "https://github.com/ProjectLibertyLabs/graph-sdk/"
version = "2.0.0"
version = "2.0.1"

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

[lib]
name = "dsnp_graph_core"
Expand All @@ -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 = "2.0.0", path = "../config" }
dsnp-graph-config = { version = "2.0.1", 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" }
Expand Down

0 comments on commit 6dcb717

Please sign in to comment.