Skip to content

Commit

Permalink
Support for Holochain v0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
mjbrisebois committed Sep 16, 2023
1 parent 68dd14f commit 6c23951
Show file tree
Hide file tree
Showing 15 changed files with 86 additions and 84 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ This project implements the CEPS pattern *(pattern documentation is in process)*

### Environment

- Enter `nix-shell` for other development environment dependencies.
- Enter `nix develop` for other development environment dependencies.


### Building
Expand Down
11 changes: 7 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -183,11 +183,14 @@ clean-files-all: clean-remove-chaff
clean-files-all-force: clean-remove-chaff
git clean -fdx

PRE_HDK_VERSION = "0.2.0"
NEW_HDK_VERSION = "0.1.3-beta-rc.1"
PRE_HDK_VERSION = "0.1.3-beta-rc.1"
NEW_HDK_VERSION = "0.1.4"

PRE_HDI_VERSION = "0.3.0"
NEW_HDI_VERSION = "0.2.3-beta-rc.0"
PRE_HDI_VERSION = "0.2.3-beta-rc.0"
NEW_HDI_VERSION = "0.2.4"

PRE_CRUD_VERSION = rev = "1f4295a79e93438474c4cf7a8d304e4143a4b94f"
NEW_CRUD_VERSION = rev = "91438a2e167b5bfea3c6673fe2f1da827c7da2c9"

GG_REPLACE_LOCATIONS = ':(exclude)*.lock' devhub_types/ zomes/*/

Expand Down
36 changes: 18 additions & 18 deletions devhub_types/Cargo.lock

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

6 changes: 3 additions & 3 deletions devhub_types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "devhub_types"
version = "0.1.3-beta-rc.1"
version = "0.1.4"
authors = ["Matthew Brisebois <[email protected]>"]
edition = "2018"

Expand All @@ -11,8 +11,8 @@ crate-type = ["cdylib", "rlib"]
[dependencies]
essence_payloads = "0.1"
flate2 = "1"
hc_crud_ceps = { git = "https://github.com/mjbrisebois/rust-hc-crud-ceps.git", rev = "1f4295a79e93438474c4cf7a8d304e4143a4b94f" }
hdk = "0.1.3-beta-rc.1"
hc_crud_ceps = { git = "https://github.com/mjbrisebois/rust-hc-crud-ceps.git", rev = "91438a2e167b5bfea3c6673fe2f1da827c7da2c9" }
hdk = "0.1.4"
hex = "0"
rmp-serde = "0.15.5"
serde = "1"
Expand Down
16 changes: 8 additions & 8 deletions flake.lock

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

5 changes: 3 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

holochain-flake = {
url = "github:holochain/holochain";
inputs.holochain.url = "github:holochain/holochain/holochain-0.1.5-beta-rc.1";
inputs.lair.url = "github:holochain/lair/lair_keystore-v0.2.3";
inputs.holochain.url = "github:holochain/holochain/holochain-0.1.6";
inputs.lair.url = "github:holochain/lair/lair_keystore-v0.3.0";
};
};

Expand All @@ -29,6 +29,7 @@
devShells.default = pkgs.mkShell {
inputsFrom = [ inputs.holochain-flake.devShells.${system}.holonix ];
packages = with pkgs; [
nodejs-18_x
];
};
};
Expand Down
2 changes: 0 additions & 2 deletions tests/integration/test_multiple.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ const DNAREPO_PATH = path.join(__dirname, "../../bundled/dnarepo.dna");
const HAPPS_PATH = path.join(__dirname, "../../bundled/happs.dna");
const WEBASSETS_PATH = path.join(__dirname, "../../bundled/web_assets.dna");

const chunk_size = (2**20 /*1 megabyte*/) * 2;

let clients;
let release;

Expand Down
Loading

0 comments on commit 6c23951

Please sign in to comment.