Skip to content

Commit

Permalink
fix(serialization)!: match conductor api changes for enums (#205)
Browse files Browse the repository at this point in the history
  • Loading branch information
jost-s authored May 3, 2024
1 parent f2a2e7f commit f0704ed
Show file tree
Hide file tree
Showing 15 changed files with 233 additions and 230 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
### Added
### Removed
### Changed
- **BREAKING** Update enum serialization to match [changed Conductor API serialization format](https://github.com/holochain/holochain/blob/develop/crates/holochain/CHANGELOG.md#040-dev1).
### Fixed

## 2024-04-29: v0.16.0-dev.6
Expand Down
114 changes: 58 additions & 56 deletions 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ members = [
resolver = "2"

[workspace.dependencies]
hdi = "0.4.0-beta-dev.36"
hdk = "0.3.0-beta-dev.41"
serde = "1.0.181"
hdi = "0.5.0-dev.1"
hdk = "0.4.0-dev.1"
serde = "1.0.192"

[profile.dev]
opt-level = "z"
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ npm install @holochain/tryorama

## Compatibility

**Tryorama v0.11.x** is compatible with **JS client v0.13.x** and **Holochain v0.1.x**.

**Tryorama v0.15.x** is compatible with **JS client v0.16.x** and **Holochain v0.2.x**.
**Tryorama v0.17.x** is compatible with **JS client v0.18.x** and **Holochain v0.4.x**.

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

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

## Example

With a few lines of code you can start testing your Holochain application. The
Expand Down
4 changes: 2 additions & 2 deletions crates/trycp_server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ reqwest = { version = "0.12", default-features = false, features = [
"json",
"rustls-tls-native-roots",
] }
rmp-serde = "=0.15.5"
serde = { version = "1.0.181", features = ["derive"] }
rmp-serde = "1.1"
serde = { version = "1.0.192", features = ["derive"] }
serde_bytes = "0.11"
slab = "0.4"
snafu = "0.6"
Expand Down
Loading

0 comments on commit f0704ed

Please sign in to comment.