Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
appaquet committed Sep 2, 2024
1 parent 3a35bf7 commit 55b5433
Show file tree
Hide file tree
Showing 17 changed files with 101 additions and 101 deletions.
70 changes: 35 additions & 35 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 @@ -13,7 +13,7 @@ keywords = ["networking", "mobile", "webassembly", "storage", "database"]
license = "Apache-2.0"
name = "exocore"
repository = "https://github.com/appaquet/exocore"
version = "0.1.25"
version = "0.1.26"

[features]
default = ["apps-sdk", "client", "logger", "web"]
Expand Down Expand Up @@ -45,17 +45,17 @@ transport-p2p-web = ["exocore-transport/p2p-web"]

[dependencies]
anyhow = { version = "1.0.86", optional = true }
exocore-apps-sdk = { version = "0.1.25", path = "./apps/sdk", default-features = false, optional = true }
exocore-chain = { version = "0.1.25", path = "./chain", default-features = false, optional = true }
exocore-core = { version = "0.1.25", path = "./core", default-features = false, optional = true }
exocore-discovery = { version = "0.1.25", path = "./discovery", default-features = false, optional = true }
exocore-protos = { version = "0.1.25", path = "./protos", default-features = false, optional = true }
exocore-store = { version = "0.1.25", path = "./store", default-features = false, optional = true }
exocore-transport = { version = "0.1.25", path = "./transport", default-features = false, optional = true }
exocore-apps-sdk = { version = "0.1.26", path = "./apps/sdk", default-features = false, optional = true }
exocore-chain = { version = "0.1.26", path = "./chain", default-features = false, optional = true }
exocore-core = { version = "0.1.26", path = "./core", default-features = false, optional = true }
exocore-discovery = { version = "0.1.26", path = "./discovery", default-features = false, optional = true }
exocore-protos = { version = "0.1.26", path = "./protos", default-features = false, optional = true }
exocore-store = { version = "0.1.26", path = "./store", default-features = false, optional = true }
exocore-transport = { version = "0.1.26", path = "./transport", default-features = false, optional = true }
log = "0.4.22"

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

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.25'
spec.version = '0.1.26'
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.25"
version = "0.1.26"

[features]
default = []

[dependencies]
anyhow = "1.0.86"
exocore-core = {version = "0.1.25", path = "../../core"}
exocore-protos = {version = "0.1.25", path = "../../protos"}
exocore-store = {version = "0.1.25", path = "../../store"}
exocore-core = {version = "0.1.26", path = "../../core"}
exocore-protos = {version = "0.1.26", path = "../../protos"}
exocore-store = {version = "0.1.26", path = "../../store"}
futures = "0.3.30"
log = "0.4.22"
reqwest = { version = "0.12.7", default-features = false, features = ["rustls-tls"] }
Expand All @@ -27,4 +27,4 @@ wasmtime = "4.0.1"
wasmtime-wasi = { version = "4.0.1", features = ["tokio"] }

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

[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.25"
version = "0.1.26"

[dependencies]
anyhow = "1.0.86"
exocore-apps-macros = {version = "0.1.25", path = "../macros"}
exocore-protos = {version = "0.1.25", path = "../../protos"}
exocore-store = {version = "0.1.25", path = "../../store", default-features = false}
exocore-apps-macros = {version = "0.1.26", path = "../macros"}
exocore-protos = {version = "0.1.26", path = "../../protos"}
exocore-store = {version = "0.1.26", path = "../../store", default-features = false}
futures = "0.3.30"
lazy_static = "1.5.0"
log = "0.4.22"
Expand Down
Loading

0 comments on commit 55b5433

Please sign in to comment.