Skip to content

Commit 207617b

Browse files
committed
bump versions
1 parent ad7615e commit 207617b

File tree

10 files changed

+27
-27
lines changed

10 files changed

+27
-27
lines changed

Cargo.lock

Lines changed: 7 additions & 7 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 = "1.0.0"
3+
version = "1.0.2"
44
edition = "2021"
55
license = "Apache-2.0"
66
publish = false
77

88
[dependencies]
9-
dsnp-graph-core = { version = "1.0.0", path = "../../core" }
10-
dsnp-graph-config = { version = "1.0.0", path = "../../config" }
9+
dsnp-graph-core = { version = "1.0.2", path = "../../core" }
10+
dsnp-graph-config = { version = "1.0.2", path = "../../config" }
1111
libc = "0.2.153"
1212
protobuf = { version = "3.4.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 = "1.0.0"
3+
version = "1.0.2"
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 = "1.0.0", path = "../../core" }
14-
dsnp-graph-config = { version = "1.0.0", path = "../../config" }
13+
dsnp-graph-core = { version = "1.0.2", path = "../../core" }
14+
dsnp-graph-config = { version = "1.0.2", path = "../../config" }
1515
libc = "0.2.153"
1616
lazy_static = "1.4.0"
1717
anyhow = "1.0.80"

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 = "1.0.0"
3+
version = "1.0.2"
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 = "1.0.0", path = "../../core" }
14-
dsnp-graph-config = { version = "1.0.0", path = "../../config" }
15-
dsnp-graph-sdk-common = { version = "1.0.0", path = "../common" }
13+
dsnp-graph-core = { version = "1.0.2", path = "../../core" }
14+
dsnp-graph-config = { version = "1.0.2", path = "../../config" }
15+
dsnp-graph-sdk-common = { version = "1.0.2", path = "../common" }
1616
jni = "0.21.1"
1717
cfg-if = "1.0.0"
1818
log = { version = "^0.4.21", 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 = "1.0.0"
3+
version = "1.0.2"
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 = "1.0.0", path = "../../core" }
15-
dsnp-graph-config = { version = "1.0.0", path = "../../config" }
14+
dsnp-graph-core = { version = "1.0.2", path = "../../core" }
15+
dsnp-graph-config = { version = "1.0.2", path = "../../config" }
1616
neon = { version = "1.0.0", default-features = false, features = ["napi-6"] }
1717
serde = { version = "1.0.197", features = ["derive"] }
1818
serde_json = "1.0.114"

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/libertyDSNP/graph-sdk/"
8-
version = "1.0.0"
8+
version = "1.0.2"
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/libertyDSNP/graph-sdk/"
8-
version = "1.0.0"
8+
version = "1.0.2"
99

1010
[lib]
1111
name = "dsnp_graph_core"
@@ -16,7 +16,7 @@ doctest = false
1616
anyhow = "1.0.69"
1717
apache-avro = { version = "0.16.0", features = ["snappy"] }
1818
dryoc = "0.5.3"
19-
dsnp-graph-config = { version = "1.0.0", path = "../config" }
19+
dsnp-graph-config = { version = "1.0.2", path = "../config" }
2020
lazy_static = "1.4.0"
2121
log = { version = "^0.4.21", features = ["std", "max_level_debug", "release_max_level_debug"] }
2222
log-result-proc-macro = { path = "../log-result-proc-macro" }

java/example-graphsdk-client/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ repositories {
3535
dependencies {
3636
implementation("org.slf4j:slf4j-api:2.0.7")
3737
implementation("org.slf4j:slf4j-simple:2.0.7")
38-
implementation("io.amplica.graphsdk:lib:0.0.1-SNAPSHOT")
38+
implementation("io.amplica.graphsdk:lib:1.0.1")
3939
testImplementation("org.junit.jupiter:junit-jupiter-api:5.8.1")
4040
testImplementation("org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:1.6.21")
4141
testImplementation("org.jetbrains.kotlin:kotlin-script-runtime:1.6.21")

java/lib/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ plugins {
1212
}
1313

1414
group = "io.amplica.graphsdk"
15-
val uploadedBinariesVersion = "1.0.0"
15+
val uploadedBinariesVersion = "1.0.1"
1616
java.sourceCompatibility = JavaVersion.VERSION_17
1717
version = if (project.hasProperty("projVersion")) {
1818
project.properties["projVersion"]!!
1919
} else {
20-
"1.0.1-SNAPSHOT"
20+
"1.0.2-SNAPSHOT"
2121
}
2222

2323
repositories {

log-result-proc-macro/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "log-result-proc-macro"
3-
version = "1.0.0"
3+
version = "1.0.2"
44
edition = "2021"
55
license = "Apache-2.0"
66

0 commit comments

Comments
 (0)