Skip to content

Commit

Permalink
Updated to 0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
guillemcordoba committed Jun 18, 2024
1 parent 5dae01e commit d7ea5ff
Show file tree
Hide file tree
Showing 8 changed files with 148 additions and 148 deletions.
176 changes: 88 additions & 88 deletions Cargo.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ resolver = "2"

[workspace.dependencies]
serde = "1.0.193"
hdi = "0.4.1-rc"
hdk = "0.3.1-rc"
holochain = "0.3.1-rc"
hdi = "0.4.1"
hdk = "0.3.1"
holochain = "0.3.1"

[profile.dev]
opt-level = "z"
Expand Down
2 changes: 1 addition & 1 deletion crates/coordinator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ hc_zome_profiles_integrity = { path = "../integrity", version = "0.2" }
hdk = { workspace = true }

[dev-dependencies]
fixt = "0.3.1-rc"
fixt = "0.3.1"
futures = { version = "0.3.1", default-features = false }
hdk = { workspace = true, features = ["encoding", "test_utils"] }
holochain = { workspace = true, features = ["test_utils"] }
Expand Down
90 changes: 45 additions & 45 deletions flake.lock

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

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
inputs = {
nixpkgs.follows = "holochain/nixpkgs";

versions.url = "github:holochain/holochain?dir=versions/0_3_rc";
versions.url = "github:holochain/holochain?dir=versions/0_3";

holochain = {
url = "github:holochain/holochain";
Expand Down
8 changes: 4 additions & 4 deletions tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
},
"dependencies": {
"@msgpack/msgpack": "^2.8.0",
"@holochain/client": "^0.17.0-rc",
"@holochain/tryorama": "^0.16.0-dev.7",
"@holochain-open-dev/signals": "^0.300.0-rc.1",
"@holochain-open-dev/utils": "^0.300.0-rc",
"@holochain/client": "^0.17.0",
"@holochain/tryorama": "^0.16.0",
"@holochain-open-dev/signals": "^0.300.0",
"@holochain-open-dev/utils": "^0.300.0",
"typescript": "^4.9.4",
"vitest": "^1.4.0"
},
Expand Down
2 changes: 1 addition & 1 deletion tests/src/profile.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ test('create Profile', async () => {
await runScenario(async scenario => {
const { alice, bob } = await setup(scenario);

let agentsWithProfile = await toPromise(alice.store.agentsWithProfile$);
let agentsWithProfile = await toPromise(alice.store.agentsWithProfile);
assert.equal(agentsWithProfile.length, 0);
watch(alice.store.agentsWithProfile, () => {}); // store keepalive
let myProfile = await toPromise(alice.store.myProfile);
Expand Down
10 changes: 5 additions & 5 deletions ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@holochain-open-dev/profiles",
"version": "0.300.0-rc.0",
"version": "0.300.0",
"description": "Frontend module for the Holochain hc_zome_profiles zomes",
"author": "[email protected]",
"license": "MIT",
Expand All @@ -27,10 +27,10 @@
"prepare": "npm run build"
},
"dependencies": {
"@holochain-open-dev/elements": "^0.300.0-rc",
"@holochain-open-dev/signals": "^0.300.0-rc.1",
"@holochain-open-dev/utils": "^0.300.0-rc",
"@holochain/client": "^0.17.0-rc",
"@holochain-open-dev/elements": "^0.300.0",
"@holochain-open-dev/signals": "^0.300.0",
"@holochain-open-dev/utils": "^0.300.0",
"@holochain/client": "^0.17.0",
"@lit/context": "^1.0.1",
"@lit/localize": "^0.12.0",
"@mdi/js": "^7.1.96",
Expand Down

0 comments on commit d7ea5ff

Please sign in to comment.