Skip to content

Commit

Permalink
Bump version to 0.1.17
Browse files Browse the repository at this point in the history
  • Loading branch information
appaquet committed Jan 1, 2022
1 parent 9514843 commit c048924
Show file tree
Hide file tree
Showing 17 changed files with 80 additions and 80 deletions.
28 changes: 14 additions & 14 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.16"
version = "0.1.17"

[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.16", path = "./apps/sdk", default-features = false, optional = true}
exocore-chain = {version = "0.1.16", path = "./chain", default-features = false, optional = true}
exocore-core = {version = "0.1.16", path = "./core", default-features = false, optional = true}
exocore-discovery = {version = "0.1.16", path = "./discovery", default-features = false, optional = true}
exocore-protos = {version = "0.1.16", path = "./protos", default-features = false, optional = true}
exocore-store = {version = "0.1.16", path = "./store", default-features = false, optional = true}
exocore-transport = {version = "0.1.16", path = "./transport", default-features = false, optional = true}
exocore-apps-sdk = {version = "0.1.17", path = "./apps/sdk", default-features = false, optional = true}
exocore-chain = {version = "0.1.17", path = "./chain", default-features = false, optional = true}
exocore-core = {version = "0.1.17", path = "./core", default-features = false, optional = true}
exocore-discovery = {version = "0.1.17", path = "./discovery", default-features = false, optional = true}
exocore-protos = {version = "0.1.17", path = "./protos", default-features = false, optional = true}
exocore-store = {version = "0.1.17", path = "./store", default-features = false, optional = true}
exocore-transport = {version = "0.1.17", path = "./transport", default-features = false, optional = true}
log = "0.4"

[dev-dependencies]
exocore-core = {version = "0.1.16", path = "./core", features = ["tests-utils"]}
exocore-core = {version = "0.1.17", 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.16'
spec.version = '0.1.17'
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.16"
version = "0.1.17"

[features]
default = []

[dependencies]
anyhow = "1.0"
exocore-core = {version = "0.1.16", path = "../../core"}
exocore-protos = {version = "0.1.16", path = "../../protos"}
exocore-store = {version = "0.1.16", path = "../../store"}
exocore-core = {version = "0.1.17", path = "../../core"}
exocore-protos = {version = "0.1.17", path = "../../protos"}
exocore-store = {version = "0.1.17", 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.32.0"

[dev-dependencies]
exocore-core = {version = "0.1.16", path = "../../core", features = ["tests-utils"]}
exocore-core = {version = "0.1.17", 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.16"
version = "0.1.17"

[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.16"
version = "0.1.17"

[dependencies]
anyhow = "1.0"
exocore-apps-macros = {version = "0.1.16", path = "../macros"}
exocore-protos = {version = "0.1.16", path = "../../protos"}
exocore-store = {version = "0.1.16", path = "../../store", default-features = false}
exocore-apps-macros = {version = "0.1.17", path = "../macros"}
exocore-protos = {version = "0.1.17", path = "../../protos"}
exocore-store = {version = "0.1.17", path = "../../store", default-features = false}
futures = "0.3"
lazy_static = "1.4"
log = "0.4"
Expand Down
12 changes: 6 additions & 6 deletions chain/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-chain"
repository = "https://github.com/appaquet/exocore"
version = "0.1.16"
version = "0.1.17"

[features]
default = ["engine", "directory-chain", "memory-pending"]
Expand All @@ -20,9 +20,9 @@ tests-utils = ["engine", "tempfile", "directory-chain", "memory-pending", "exoco
[dependencies]
anyhow = "1.0"
byteorder = "1.4"
exocore-core = {version = "0.1.16", path = "../core"}
exocore-protos = {version = "0.1.16", path = "../protos"}
exocore-transport = {version = "0.1.16", path = "../transport", default-features = false}
exocore-core = {version = "0.1.17", path = "../core"}
exocore-protos = {version = "0.1.17", path = "../protos"}
exocore-transport = {version = "0.1.17", path = "../transport", default-features = false}
futures = "0.3"
itertools = "0.10"
log = "0.4"
Expand All @@ -38,8 +38,8 @@ memmap2 = {version = "0.5", optional = true}
tempfile = {version = "3.2", optional = true}

[dev-dependencies]
exocore-core = {version = "0.1.16", path = "../core", features = ["tests-utils"]}
exocore-transport = {version = "0.1.16", path = "../transport", features = ["tests-utils"]}
exocore-core = {version = "0.1.17", path = "../core", features = ["tests-utils"]}
exocore-transport = {version = "0.1.17", path = "../transport", features = ["tests-utils"]}
tempfile = "3.2"
tokio = {version = "1.15", features = ["macros"], default-features = false}

Expand Down
8 changes: 4 additions & 4 deletions clients/android/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
authors = ["Andre-Philippe Paquet <[email protected]>"]
edition = "2021"
name = "exocore-client-android"
version = "0.1.16"
version = "0.1.17"

[lib]
crate-type = ["cdylib"]

[dependencies]
anyhow = "1.0"
exocore-core = {version = "0.1.16", path = "../../core", features = ["runtime", "logger"]}
exocore-store = {version = "0.1.16", path = "../../store"}
exocore-transport = {version = "0.1.16", path = "../../transport", features = ["p2p-full"]}
exocore-core = {version = "0.1.17", path = "../../core", features = ["runtime", "logger"]}
exocore-store = {version = "0.1.17", path = "../../store"}
exocore-transport = {version = "0.1.17", path = "../../transport", features = ["p2p-full"]}
thiserror = "1.0"
12 changes: 6 additions & 6 deletions clients/c/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
authors = ["Andre-Philippe Paquet <[email protected]>"]
edition = "2021"
name = "exocore-client-c"
version = "0.1.16"
version = "0.1.17"

[lib]
crate-type = ["staticlib", "cdylib"]
name = "exocore"

[dependencies]
exocore-core = {version = "0.1.16", path = "../../core", features = ["runtime", "logger"]}
exocore-discovery = {version = "0.1.16", path = "../../discovery", default-features = false}
exocore-protos = {version = "0.1.16", path = "../../protos"}
exocore-store = {version = "0.1.16", path = "../../store", default-features = false, features = ["remote"]}
exocore-transport = {version = "0.1.16", path = "../../transport", features = ["p2p-full"]}
exocore-core = {version = "0.1.17", path = "../../core", features = ["runtime", "logger"]}
exocore-discovery = {version = "0.1.17", path = "../../discovery", default-features = false}
exocore-protos = {version = "0.1.17", path = "../../protos"}
exocore-store = {version = "0.1.17", path = "../../store", default-features = false, features = ["remote"]}
exocore-transport = {version = "0.1.17", path = "../../transport", features = ["p2p-full"]}
weak-table = "0.3"
futures = "0.3"
libc = "0.2"
Expand Down
12 changes: 6 additions & 6 deletions clients/web/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@
authors = ["Andre-Philippe Paquet <[email protected]>"]
edition = "2021"
name = "exocore-client-web"
version = "0.1.16"
version = "0.1.17"

[lib]
crate-type = ["cdylib"]

[dependencies]
anyhow = "1.0"
console_error_panic_hook = "0.1"
exocore-core = {version = "0.1.16", path = "../../core", default-features = false, features=["web"]}
exocore-discovery = {version = "0.1.16", path = "../../discovery", default-features = false}
exocore-protos = {version = "0.1.16", path = "../../protos", default-features = false}
exocore-store = {version = "0.1.16", path = "../../store", default-features = false, features = ["remote"]}
exocore-transport = {version = "0.1.16", path = "../../transport", default-features = false, features = ["p2p-web"]}
exocore-core = {version = "0.1.17", path = "../../core", default-features = false, features=["web"]}
exocore-discovery = {version = "0.1.17", path = "../../discovery", default-features = false}
exocore-protos = {version = "0.1.17", path = "../../protos", default-features = false}
exocore-store = {version = "0.1.17", path = "../../store", default-features = false, features = ["remote"]}
exocore-transport = {version = "0.1.17", path = "../../transport", default-features = false, features = ["p2p-web"]}
futures = "0.3"
js-sys = "0.3"
log = "0.4"
Expand Down
4 changes: 2 additions & 2 deletions core/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-core"
repository = "https://github.com/appaquet/exocore"
version = "0.1.16"
version = "0.1.17"

[features]
logger = ["log4rs"]
Expand All @@ -33,7 +33,7 @@ bs58 = "0.4"
byteorder = "1.4"
bytes = "1.1"
chrono = "0.4"
exocore-protos = {version = "0.1.16", path = "../protos"}
exocore-protos = {version = "0.1.17", path = "../protos"}
futures = {version = "0.3", features = ["async-await"]}
libp2p = {version = "0.41", features = ["noise", "secp256k1"], default-features = false}
log = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion discovery/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-discovery"
repository = "https://github.com/appaquet/exocore"
version = "0.1.16"
version = "0.1.17"

[features]
default = ["server"]
Expand Down
16 changes: 8 additions & 8 deletions exo/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 = "exo"
repository = "https://github.com/appaquet/exocore"
version = "0.1.16"
version = "0.1.17"

[dependencies]
anyhow = "1.0"
Expand All @@ -16,13 +16,13 @@ clap = {version = "3.0.0", features = ["derive", "env"]}
console = "0.15"
dialoguer = "0.9"
dirs-next = "2.0"
exocore-apps-host = {version = "0.1.16", path = "../apps/host"}
exocore-chain = {version = "0.1.16", path = "../chain"}
exocore-core = {version = "0.1.16", path = "../core", features = ["runtime", "logger"]}
exocore-discovery = {version = "0.1.16", path = "../discovery", features = ["server"]}
exocore-protos = {version = "0.1.16", path = "../protos"}
exocore-store = {version = "0.1.16", path = "../store"}
exocore-transport = {version = "0.1.16", path = "../transport", features = ["http-server"]}
exocore-apps-host = {version = "0.1.17", path = "../apps/host"}
exocore-chain = {version = "0.1.17", path = "../chain"}
exocore-core = {version = "0.1.17", path = "../core", features = ["runtime", "logger"]}
exocore-discovery = {version = "0.1.17", path = "../discovery", features = ["server"]}
exocore-protos = {version = "0.1.17", path = "../protos"}
exocore-store = {version = "0.1.17", path = "../store"}
exocore-transport = {version = "0.1.17", path = "../transport", features = ["http-server"]}
futures = "0.3"
indicatif = "0.16"
log = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"author": "Andre-Philippe Paquet <[email protected]>",
"name": "exocore",
"version": "0.1.16",
"version": "0.1.17",
"repository": "https://github.com/appaquet/exocore",
"license": "Apache-2.0",
"scripts": {
Expand Down
Loading

0 comments on commit c048924

Please sign in to comment.