Skip to content

Commit

Permalink
build: update deps to holochain 0.5.0-dev.0 (#277)
Browse files Browse the repository at this point in the history
  • Loading branch information
jost-s authored Oct 10, 2024
1 parent 88dc5fa commit 7cd8142
Show file tree
Hide file tree
Showing 9 changed files with 58 additions and 58 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

### Added
### Changed
- Update to Holochain 0.4.0-rc.0
- Update to Holochain 0.5.0-dev.0
### Fixed
### Removed

Expand Down
76 changes: 38 additions & 38 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ resolver = "2"
opt-level = "z"

[workspace.dependencies]
hdk = "0.4.0-rc.0"
hdk = "0.5.0-dev.0"
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ A JavaScript client for the Holochain Conductor API (works with browsers as well

## Installation

**JS client v0.19.x** is compatible with **Holochain v0.5.x**.

**JS client v0.18.x** is compatible with **Holochain v0.4.x**.

**JS client v0.17.x** is compatible with **Holochain v0.3.x**.

**JS client v0.16.x** is compatible with **Holochain v0.2.x**.

To install from NPM, run
```bash
npm install --save-exact @holochain/client
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.

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
description = "Nix shell for Holochain app development";

inputs = {
holonix.url = "github:holochain/holonix?ref=main-0.4";
holonix.url = "github:holochain/holonix?ref=main";
nixpkgs.follows = "holonix/nixpkgs";
};

Expand Down
10 changes: 5 additions & 5 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,6 +1,6 @@
{
"name": "@holochain/client",
"version": "0.18.0-rc.0",
"version": "0.19.0-dev.0",
"description": "A JavaScript client for the Holochain Conductor API",
"author": "Holochain Foundation <[email protected]> (https://holochain.org)",
"license": "CAL-1.0",
Expand Down
2 changes: 1 addition & 1 deletion src/api/admin/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ export type RevokeAgentKeyRequest = {
*
* @public
*/
export type RevokeAgentKeyResponse = Array<[CellId, string]>;
export type RevokeAgentKeyResponse = [CellId, string][];

/**
* @public
Expand Down

0 comments on commit 7cd8142

Please sign in to comment.