Skip to content

Commit

Permalink
chore(release): v0.11.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jost-s committed Feb 14, 2023
1 parent 439d557 commit 96bd726
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
### Changed
### Fixed

## 2023-02-14: v0.11.2
### Changed
- Output Holochain traces at `info` log level by default. Before log level needed to be set to `debug` for traces to appear.
- Switch to Nix flake for develop environment. Run `nix develop` from now on instead of `nix-shell`. Pass on `--extra-experimental-features nix-command --extra-experimental-features flakes` or enable these features for your user in [`~/.config/nix/nix.conf`](https://nixos.org/manual/nix/stable/command-ref/conf-file.html#conf-experimental-features).

## 2023-02-03: v0.11.1
### Changed
- Upgrade JS client to latest minor version (v0.12.0).
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion 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.11.1",
"version": "0.11.2",
"author": "Holochain Foundation",
"keywords": [
"holochain",
Expand Down
2 changes: 1 addition & 1 deletion ts/src/local/conductor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ export class Conductor implements IConductor {
resolve();
}
} else {
logger.debug(data.toString());
logger.info(data.toString());
}
});

Expand Down

0 comments on commit 96bd726

Please sign in to comment.