Skip to content

Commit

Permalink
chore(release)!: bump version & update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
jost-s committed Oct 1, 2022
2 parents c15e705 + 4a32d01 commit 9197856
Show file tree
Hide file tree
Showing 16 changed files with 431 additions and 85 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,17 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
### Changed
### Fixed

## 2022-09-30 [0.9.0]

### Added
- TryCP: Calls for clone cell management
- Tests of clone cell management for local and TryCP conductors
### Removed
- TryCP: Deprecated Admin API request to create clone cells
### Changed
- **BREAKING CHANGE**: Upgrade to Holochain JS client v0.9.2 with clone cell features
- Upgrade to Holochain v0.0.165

## 2022-09-12 [0.8.0]

### Changed
Expand Down
32 changes: 16 additions & 16 deletions Cargo.lock

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

6 changes: 2 additions & 4 deletions default.nix
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
let
holonixPath = (import ./nix/sources.nix).holonix;
holonix = import (holonixPath) {
holochainVersionId = "v0_0_160";
holochainVersionId = "v0_0_165";
};
nixpkgs = holonix.pkgs;
in
nixpkgs.mkShell {
inputsFrom = [ holonix.main ];
packages = with nixpkgs; [
nodejs-16_x
];
packages = with nixpkgs; [ nodejs ];
}
6 changes: 3 additions & 3 deletions nix/sources.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
"homepage": "",
"owner": "holochain",
"repo": "holonix",
"rev": "e80aef133ce82983c038da2df7fa677c6d33a2e1",
"sha256": "0b7l03qq7386r61rgml8xj9irxrpzf7gicjqzv0gpb2xsvvc7642",
"rev": "3d7a34913261388ec335eae3e41b19b9045b28c0",
"sha256": "08ci9dkdk8j4jq5qkzrky15shqv570za8yv4fhy087imy585r99g",
"type": "tarball",
"url": "https://github.com/holochain/holonix/archive/e80aef133ce82983c038da2df7fa677c6d33a2e1.tar.gz",
"url": "https://github.com/holochain/holonix/archive/3d7a34913261388ec335eae3e41b19b9045b28c0.tar.gz",
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
}
}
34 changes: 17 additions & 17 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@holochain/tryorama",
"description": "Toolset to manage Holochain conductors and facilitate running test scenarios",
"version": "0.8.0",
"version": "0.9.0",
"author": "Holochain Foundation",
"keywords": [
"holochain",
Expand Down Expand Up @@ -45,7 +45,7 @@
"test:trycp:scenario": "node --loader ts-node/esm ts/test/trycp/scenario.ts"
},
"dependencies": {
"@holochain/client": "^0.8.0",
"@holochain/client": "^0.9.2",
"get-port": "^6.1.2",
"lodash": "^4.17.21",
"uuid": "^8.3.2",
Expand Down
8 changes: 5 additions & 3 deletions ts/src/local/conductor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -422,9 +422,11 @@ export class Conductor implements IConductor {
let roleId: string;

const registerDnaReqOpts: _RegisterDnaReqOpts = {
network_seed:
("networkSeed" in options && options.networkSeed) || undefined,
properties: ("properties" in dna && dna.properties) || undefined,
modifiers: {
network_seed:
("networkSeed" in options && options.networkSeed) || undefined,
properties: ("properties" in dna && dna.properties) || undefined,
},
};

const dnaSource = "source" in dna ? dna.source : dna;
Expand Down
Loading

0 comments on commit 9197856

Please sign in to comment.