Skip to content

Commit

Permalink
bump to holochain v0.2.4-rc.0 (#175)
Browse files Browse the repository at this point in the history
  • Loading branch information
zo-el committed Dec 14, 2023
1 parent c092929 commit 564b585
Show file tree
Hide file tree
Showing 12 changed files with 1,324 additions and 1,035 deletions.
2,257 changes: 1,261 additions & 996 deletions Cargo.lock

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions Makefile
@@ -0,0 +1,12 @@
update:
rm -rf Cargo.lock
echo '⚙️ Updating crate...'
cargo upgrade \
-p holochain_types@$(shell jq .holochain_types ./version-manager.json) \
-p holofuel_types@$(shell jq .holofuel_types ./version-manager.json) \
-p holochain_keystore@$(shell jq .holochain_keystore ./version-manager.json) \
-p lair_keystore_api@$(shell jq .lair_keystore_api ./version-manager.json) \
-p holochain_conductor_api@$(shell jq .holochain_conductor_api ./version-manager.json) \
-p holochain_websocket@$(shell jq .holochain_websocket ./version-manager.json) \
-p mr_bundle@$(shell jq .mr_bundle ./version-manager.json) \
-p holochain_client@$(shell jq .holochain_client ./version-manager.json) --pinned
2 changes: 1 addition & 1 deletion crates/configure-holochain/Cargo.toml
Expand Up @@ -21,6 +21,6 @@ rev = "bfaced6044ae570bf20d4528fa9aaafcc43ddeec"

[dev-dependencies]
test-case = "2.2.2"
serial_test = { version = "0.9.0", features = ["async"] }
serial_test = { version = "1.0.0", features = ["async"] }
holochain_env_setup = { path = "../holochain_env_setup" }
hpos-config-core = { git = "https://github.com/Holo-Host/hpos-config", rev = "bfaced6044ae570bf20d4528fa9aaafcc43ddeec" }
4 changes: 2 additions & 2 deletions crates/core_app_cli/Cargo.toml
Expand Up @@ -6,10 +6,10 @@ authors = ["zo-el <joelulahanna@gmail.com>"]

[dependencies]
anyhow = "1.0"
holochain_types = "0.2.2"
holochain_types = "0.2.4-rc.0"
hpos_hc_connect = { path = "../hpos_connect_hc" }
serde = { version = "1.0", features = ["derive"] }
structopt = "0.3.0"
rmp-serde = "1.1.1"
tokio = { version = "1.11", features = [ "full" ] }
holofuel_types = "0.5.0"
holofuel_types = "0.5.5"
8 changes: 4 additions & 4 deletions crates/holo_happ_manager/Cargo.toml
Expand Up @@ -8,9 +8,9 @@ edition = "2021"
anyhow = "1.0"
hpos_hc_connect = { version = "0.1.0", path = "../hpos_connect_hc" }

holochain_types = {version = "0.2.2", features = ["chc"]}
holochain_conductor_api = { version = "0.2.2", features = ["chc"]}
holochain_keystore = { version = "0.2.2" }
holochain_types = {version = "0.2.4-rc.0", features = ["chc"]}
holochain_conductor_api = { version = "0.2.4-rc.0", features = ["chc"]}
holochain_keystore = { version = "0.2.4-rc.0" }
getrandom = "0.2.1"
serde = "1.0"
serde_json = "1.0.96"
Expand All @@ -21,7 +21,7 @@ tracing-subscriber = "0.3.17"
tokio = "1.28.2"
url2 = "0.0.6"
hpos-config-core = { git = "https://github.com/Holo-Host/hpos-config", rev = "bfaced6044ae570bf20d4528fa9aaafcc43ddeec" }
holofuel_types = "0.5.0"
holofuel_types = "0.5.5"

[dev-dependencies]
configure-holochain = { path = "../configure-holochain"}
Expand Down
6 changes: 3 additions & 3 deletions crates/holochain_env_setup/Cargo.toml
Expand Up @@ -9,16 +9,16 @@ anyhow = "1.0"
one_err = "0.0.8"
url = "2.2"
log = "0.4.17"
holochain_keystore = "=0.2.2"
holochain_keystore = "0.2.4-rc.0"
lair_keystore_api = "0.3.0"
lazy_static = "1"
isahc = "1.7.2"
snafu = "0.7.4"
serde = "1.0.123"
serde = "1.0"
serde_yaml = "0.9"
dotenv = "0.15.0"
tempfile = "3.1"
sodoken = "0.0.9"
reqwest = { version = "0.11.14", features = ["json"] }
tracing = { version = "0.1", features = ["attributes"] }
taskgroup_manager = { path = "../taskgroup_manager" }
taskgroup_manager = { path = "../taskgroup_manager" }
2 changes: 1 addition & 1 deletion crates/holofuel_cli/Cargo.toml
Expand Up @@ -6,7 +6,7 @@ authors = ["zo-el <joelulahanna@gmail.com>"]

[dependencies]
anyhow = "1.0"
holochain_types = "0.2.2"
holochain_types = "0.2.4-rc.0"
hpos_hc_connect = { path = "../hpos_connect_hc" }
serde = { version = "1.0", features = ["derive"] }
structopt = "0.3.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/holofuel_init/Cargo.toml
Expand Up @@ -6,7 +6,7 @@ authors = ["zo-el <joelulahanna@gmail.com>"]

[dependencies]
anyhow = "1.0"
holochain_types = "0.2.2"
holochain_types = "0.2.4-rc.0"
hpos_hc_connect = { path = "../hpos_connect_hc" }
serde = { version = "1.0", features = ["derive"] }
tracing = "0.1.37"
Expand Down
14 changes: 7 additions & 7 deletions crates/hpos_connect_hc/Cargo.toml
Expand Up @@ -20,16 +20,16 @@ isahc = "1.7.2"
tempfile = "3.1"
thiserror = "1.0"
serde = "1.0"
holochain_types = {version = "0.2.2", features = ["chc"]}
holochain_conductor_api = { version = "0.2.2", features = ["chc"]}
holochain_websocket = { version = "0.2.2"}
mr_bundle = { version = "0.2.2" }
holochain_types = {version = "0.2.4-rc.0", features = ["chc"]}
holochain_conductor_api = { version = "0.2.4-rc.0", features = ["chc"]}
holochain_websocket = { version = "0.2.3"}
mr_bundle = { version = "0.2.3" }
hpos-config-core = { git = "https://github.com/Holo-Host/hpos-config", rev = "bfaced6044ae570bf20d4528fa9aaafcc43ddeec" }
hpos-config-seed-bundle-explorer ={ git = "https://github.com/Holo-Host/hpos-config", rev = "bfaced6044ae570bf20d4528fa9aaafcc43ddeec" }
lair_keystore_api = "0.3.0"
getrandom = "0.2.7"
holochain_client = "0.4.2"
holochain_keystore = "0.2.2"
holochain_client = "0.4.6-rc.0"
holochain_keystore = "0.2.4-rc.0"
sodoken = "0.0.9"
url2 = "0.0.6"
holofuel_types = "0.5.0"
holofuel_types = "0.5.5"
38 changes: 19 additions & 19 deletions flake.lock

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

3 changes: 2 additions & 1 deletion flake.nix
Expand Up @@ -3,7 +3,8 @@

inputs = {
versions.url = "github:holochain/holochain?dir=versions/0_2";

versions.inputs.holochain.url = "github:holochain/holochain/holochain-0.2.4-rc.0";

holochain-flake.url = "github:holochain/holochain";
holochain-flake.inputs.versions.follows = "versions";

Expand Down
11 changes: 11 additions & 0 deletions version-manager.json
@@ -0,0 +1,11 @@
{
"holochain_rev": "holochain-0.2.4-rc.0",
"holochain_types":"0.2.4-rc.0",
"holofuel_types":"0.5.5",
"holochain_keystore":"0.2.4-rc.0",
"holochain_conductor_api":"0.2.4-rc.0",
"holochain_websocket":"0.2.3",
"lair_keystore_api":"0.3.0",
"mr_bundle":"0.2.3",
"holochain_client":"0.4.6-rc.0"
}

0 comments on commit 564b585

Please sign in to comment.