Skip to content
This repository has been archived by the owner on Feb 16, 2025. It is now read-only.

Commit

Permalink
chore(*): bump to v0.1.20
Browse files Browse the repository at this point in the history
  • Loading branch information
appaquet committed Mar 19, 2022
1 parent aacec96 commit ad53dc7
Show file tree
Hide file tree
Showing 17 changed files with 110 additions and 108 deletions.
86 changes: 44 additions & 42 deletions Cargo.lock

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

18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ keywords = ["networking", "mobile", "webassembly", "storage", "database"]
license = "Apache-2.0"
name = "exocore"
repository = "https://github.com/appaquet/exocore"
version = "0.1.19"
version = "0.1.20"

[features]
default = [
Expand Down Expand Up @@ -41,17 +41,17 @@ transport-p2p-web = ["exocore-transport/p2p-web"]

[dependencies]
anyhow = { version = "1.0", optional = true }
exocore-apps-sdk = {version = "0.1.19", path = "./apps/sdk", default-features = false, optional = true}
exocore-chain = {version = "0.1.19", path = "./chain", default-features = false, optional = true}
exocore-core = {version = "0.1.19", path = "./core", default-features = false, optional = true}
exocore-discovery = {version = "0.1.19", path = "./discovery", default-features = false, optional = true}
exocore-protos = {version = "0.1.19", path = "./protos", default-features = false, optional = true}
exocore-store = {version = "0.1.19", path = "./store", default-features = false, optional = true}
exocore-transport = {version = "0.1.19", path = "./transport", default-features = false, optional = true}
exocore-apps-sdk = {version = "0.1.20", path = "./apps/sdk", default-features = false, optional = true}
exocore-chain = {version = "0.1.20", path = "./chain", default-features = false, optional = true}
exocore-core = {version = "0.1.20", path = "./core", default-features = false, optional = true}
exocore-discovery = {version = "0.1.20", path = "./discovery", default-features = false, optional = true}
exocore-protos = {version = "0.1.20", path = "./protos", default-features = false, optional = true}
exocore-store = {version = "0.1.20", path = "./store", default-features = false, optional = true}
exocore-transport = {version = "0.1.20", path = "./transport", default-features = false, optional = true}
log = "0.4"

[dev-dependencies]
exocore-core = {version = "0.1.19", path = "./core", features = ["tests-utils"]}
exocore-core = {version = "0.1.20", path = "./core", features = ["tests-utils"]}

[workspace]
exclude = [
Expand Down
2 changes: 1 addition & 1 deletion Exocore.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'Exocore'
spec.version = '0.1.19'
spec.version = '0.1.20'
spec.license = { :type => 'Apache-2.0' }
spec.summary = 'Distributed applications framework'
spec.authors = { 'Andre-Philippe Paquet' => '[email protected]' }
Expand Down
10 changes: 5 additions & 5 deletions apps/host/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ keywords = ["networking", "mobile", "webassembly", "storage", "database"]
license = "Apache-2.0"
name = "exocore-apps-host"
repository = "https://github.com/appaquet/exocore"
version = "0.1.19"
version = "0.1.20"

[features]
default = []

[dependencies]
anyhow = "1.0"
exocore-core = {version = "0.1.19", path = "../../core"}
exocore-protos = {version = "0.1.19", path = "../../protos"}
exocore-store = {version = "0.1.19", path = "../../store"}
exocore-core = {version = "0.1.20", path = "../../core"}
exocore-protos = {version = "0.1.20", path = "../../protos"}
exocore-store = {version = "0.1.20", path = "../../store"}
futures = "0.3"
log = "0.4"
reqwest = {version = "0.11", default-features = false, features = ["rustls-tls"]}
Expand All @@ -26,4 +26,4 @@ thiserror = "1.0"
wasmtime = "0.35.1"

[dev-dependencies]
exocore-core = {version = "0.1.19", path = "../../core", features = ["tests-utils"]}
exocore-core = {version = "0.1.20", path = "../../core", features = ["tests-utils"]}
2 changes: 1 addition & 1 deletion apps/macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ keywords = ["networking", "mobile", "webassembly", "storage", "database"]
license = "Apache-2.0"
name = "exocore-apps-macros"
repository = "https://github.com/appaquet/exocore"
version = "0.1.19"
version = "0.1.20"

[lib]
proc-macro = true
Expand Down
8 changes: 4 additions & 4 deletions apps/sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ keywords = ["networking", "mobile", "webassembly", "storage", "database"]
license = "Apache-2.0"
name = "exocore-apps-sdk"
repository = "https://github.com/appaquet/exocore"
version = "0.1.19"
version = "0.1.20"

[dependencies]
anyhow = "1.0"
exocore-apps-macros = {version = "0.1.19", path = "../macros"}
exocore-protos = {version = "0.1.19", path = "../../protos"}
exocore-store = {version = "0.1.19", path = "../../store", default-features = false}
exocore-apps-macros = {version = "0.1.20", path = "../macros"}
exocore-protos = {version = "0.1.20", path = "../../protos"}
exocore-store = {version = "0.1.20", path = "../../store", default-features = false}
futures = "0.3"
lazy_static = "1.4"
log = "0.4"
Expand Down
Loading

0 comments on commit ad53dc7

Please sign in to comment.