Skip to content

Commit

Permalink
Updated to 0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
guillemcordoba committed Dec 19, 2024
1 parent 27ede2e commit ea7b868
Show file tree
Hide file tree
Showing 20 changed files with 503 additions and 415 deletions.
715 changes: 403 additions & 312 deletions Cargo.lock

Large diffs are not rendered by default.

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

[workspace.dependencies]
hdi = "0.5.0-rc"
hdk = "0.4.0-rc"
holochain = "0.4.0-rc"
holo_hash = "0.4.0-rc"
holochain_types = "0.4.0-rc"
mr_bundle = "0.4.0-rc"
hdi = "0.5.0"
hdk = "0.4.0"
holochain = "0.4.0"
holo_hash = "0.4.0"
holochain_types = "0.4.0"
mr_bundle = "0.4.0"
4 changes: 2 additions & 2 deletions crates/scaffold_tnesh_zome/template/Cargo.toml.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ members = ["zomes/coordinator/*", "zomes/integrity/*"]
resolver = "2"

[workspace.dependencies]
hdi = "0.5.0-rc"
hdk = "0.4.0-rc"
hdi = "0.5.0"
hdk = "0.4.0"
serde = "1"

2 changes: 1 addition & 1 deletion crates/scaffold_tnesh_zome/template/docs/package.json.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"devDependencies": {
"@api-viewer/demo": "1.0.0-pre.10",
"@api-viewer/docs": "1.0.0-pre.10",
"@holochain/client": "^0.18.0-rc",
"@holochain/client": "^0.18.0",
"@darksoil-studio/profiles-zome": "github:darksoil-studio/profiles-zome#main-0.4&path:ui",
"@{{npm_organization}}/{{kebab_case zome_name}}-zome": "workspace:*",
"@shoelace-style/shoelace": "^2.11.0",
Expand Down
8 changes: 4 additions & 4 deletions crates/scaffold_tnesh_zome/template/tests/package.json.hbs
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.18.0-rc",
"@holochain/tryorama": "^0.17.0-dev",
"@tnesh-stack/signals": "^0.400.0-rc",
"@tnesh-stack/utils": "^0.400.0-rc",
"@holochain/client": "^0.18.0",
"@holochain/tryorama": "^0.17.0",
"@tnesh-stack/signals": "^0.400.0",
"@tnesh-stack/utils": "^0.400.0",
"typescript": "^5.4.5",
"vitest": "^1.4.0"
},
Expand Down
8 changes: 4 additions & 4 deletions crates/scaffold_tnesh_zome/template/ui/package.json.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@
"./locales/*": "./locales/*"
},
"dependencies": {
"@holochain/client": "^0.18.0-rc",
"@holochain/client": "^0.18.0",
"@darksoil-studio/profiles-zome": "github:darksoil-studio/profiles-zome#main-0.4&path:ui",
"@tnesh-stack/elements": "^0.400.0-rc",
"@tnesh-stack/signals": "^0.400.0-rc",
"@tnesh-stack/utils": "^0.400.0-rc",
"@tnesh-stack/elements": "^0.400.0",
"@tnesh-stack/signals": "^0.400.0",
"@tnesh-stack/utils": "^0.400.0",
"@lit/context": "^1.0.0",
"@lit/localize": "^0.12.0",
"@mdi/js": "^7.2.0",
Expand Down
80 changes: 38 additions & 42 deletions flake.lock

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

8 changes: 4 additions & 4 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
inputs = {
nixpkgs.follows = "holonix/nixpkgs";
pnpmnixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";

holonix.url = "github:holochain/holonix/main-0.4";
rust-overlay.follows = "holonix/rust-overlay";
Expand Down Expand Up @@ -142,7 +141,8 @@
deterministicCraneLib = let
rustToolchain =
inputs.holonix.outputs.packages."x86_64-linux".rust;
in (inputs.crane.mkLib inputs.nixpkgs.outputs.legacyPackages.${
in (inputs.crane.mkLib
inputs.holonix.inputs.nixpkgs.outputs.legacyPackages.${
"x86_64-linux"
}).overrideToolchain rustToolchain;

Expand Down Expand Up @@ -231,7 +231,7 @@

packages.synchronized-pnpm = pkgs.symlinkJoin {
name = "synchronized-pnpm";
paths = [ inputs'.pnpmnixpkgs.legacyPackages.pnpm ];
paths = [ inputs'.nixpkgs.legacyPackages.pnpm ];
buildInputs = [ pkgs.makeWrapper ];
postBuild = ''
wrapProgram $out/bin/pnpm --run ${self'.packages.sync-npm-git-dependencies-with-nix}/bin/sync-npm-git-dependencies-with-nix
Expand Down
6 changes: 3 additions & 3 deletions nix/fixtures/module-repo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ members = ["zomes/*"]
resolver = "2"

[workspace.dependencies]
hdi = "0.5.0-rc"
hdk = "0.4.0-rc"
holochain = "0.4.0-rc"
hdi = "0.5.0"
hdk = "0.4.0"
holochain = "0.4.0"

[profile.release]
opt-level = "z"
2 changes: 1 addition & 1 deletion nix/reference-happ/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version ="0.4.0"
edition = "2021"

[dependencies]
hdk = "0.4.0-rc"
hdk = "0.4.0"

[lib]
crate-type = ["cdylib", "rlib"]
Expand Down
4 changes: 2 additions & 2 deletions packages/core-types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tnesh-stack/core-types",
"version": "0.400.0-rc.0",
"version": "0.400.0",
"description": "Typescript types for holochain core",
"main": "dist/index.js",
"module": "dist/index.js",
Expand All @@ -19,7 +19,7 @@
"author": "",
"license": "ISC",
"dependencies": {
"@holochain/client": "^0.18.0-rc"
"@holochain/client": "^0.18.0"
},
"devDependencies": {
"@types/libsodium-wrappers": "^0.7.10",
Expand Down
4 changes: 2 additions & 2 deletions packages/elements/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tnesh-stack/elements",
"version": "0.400.0-rc.1",
"version": "0.400.0",
"description": "Common utilities and elements to build Holochain web applications",
"author": "[email protected]",
"main": "dist/index.js",
Expand All @@ -26,7 +26,7 @@
},
"dependencies": {
"@holo-host/identicon": "^0.1.0",
"@holochain/client": "^0.18.0-rc",
"@holochain/client": "^0.18.0",
"@lit/localize": "^0.12.0",
"@lit/context": "^1.0.0",
"@lit-labs/router": "^0.1.3",
Expand Down
6 changes: 3 additions & 3 deletions packages/signals/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tnesh-stack/signals",
"version": "0.400.0-rc.0",
"version": "0.400.0",
"description": "Holochain async-signals to build reusable tnesh modules",
"author": "[email protected]",
"main": "dist/index.js",
Expand All @@ -21,8 +21,8 @@
"test": "vitest run"
},
"dependencies": {
"@tnesh-stack/utils": "workspace:^0.400.0-rc",
"@holochain/client": "^0.18.0-rc",
"@tnesh-stack/utils": "workspace:^0.400.0",
"@holochain/client": "^0.18.0",
"@msgpack/msgpack": "^2.8.0",
"async-signals": "^0.1.10",
"lodash-es": "^4.17.21",
Expand Down
4 changes: 2 additions & 2 deletions packages/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tnesh-stack/utils",
"version": "0.400.0-rc.1",
"version": "0.400.0",
"description": "Common utilities to build Holochain web applications",
"author": "[email protected]",
"main": "dist/index.js",
Expand All @@ -25,7 +25,7 @@
"test": "vitest run"
},
"dependencies": {
"@holochain/client": "^0.18.0-rc",
"@holochain/client": "^0.18.0",
"@msgpack/msgpack": "^2.8.0",
"blakejs": "^1.2.1",
"emittery": "^1.0.1",
Expand Down
Loading

0 comments on commit ea7b868

Please sign in to comment.