Skip to content

Commit

Permalink
chore(release): v0.5.0-dev.26
Browse files Browse the repository at this point in the history
  • Loading branch information
jost-s committed Jan 27, 2024
1 parent ea8ae7a commit b495802
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### Fixed
### Removed

## 2024-01-26: v0.5.0-dev.26
### Added
- `AppAgentWebsocket` as an app websocket tied to a specific app and agent. Recommended for most applications.
- `on_signal`: event handler for reacting to app signals; implemented on `AppWebsocket` and `AppAgentWebsocket`.
### Changed
- Bump deps to holochain-0.3.0-beta-dev.26

## 2023-11-23: v0.5.0-dev.25
### Changed
- Bump deps to holochain-0.3.0-beta-dev.25
Expand Down
2 changes: 1 addition & 1 deletion 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 @@ -9,7 +9,7 @@ name = "holochain_client"
readme = "README.md"
repository = "https://github.com/holochain/holochain-client-rust"
resolver = "2"
version = "0.5.0-dev.25"
version = "0.5.0-dev.26"

[workspace]
members = ["fixture/zomes/foo", "utilities"]
Expand Down
4 changes: 2 additions & 2 deletions src/app_agent_websocket.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ impl AppAgentWebsocket {
let base_role_name = get_base_role_name_from_clone_id(role_name);

let Some(role_cells) = self.app_info.cell_info.get(&base_role_name) else {
return Err(ConductorApiError::CellNotFound);
return Err(ConductorApiError::CellNotFound);
};

let maybe_clone_cell: Option<ClonedCell> =
Expand All @@ -129,7 +129,7 @@ impl AppAgentWebsocket {
return Ok(clone_cell.cell_id);
} else {
let Some(role_cells) = self.app_info.cell_info.get(role_name) else {
return Err(ConductorApiError::CellNotFound);
return Err(ConductorApiError::CellNotFound);
};

let maybe_provisioned: Option<ProvisionedCell> =
Expand Down

0 comments on commit b495802

Please sign in to comment.