Releases: holochain/holochain-serialization
v0.0.54
Changed
- BREAKING: Updated dependencies
rmp-serde
andserde
. Serialization format for Rust enums changed.
An enum
enum ConductorApi {
Request { param: i32 },
}
let request = ConductorApi::Request { param: 100 };
previously serialized to
{
"type": {
"request": null
},
"data": {
"param": 100
}
}
and now serializes to
{
"type": "request",
"data": {
"param": 100
}
}
v0.0.52
add readme
v0.0.50
Version v0.0.50
v0.0.49
Re-release v0.0.48 to fix bad versioning
v0.0.47
Changelog
The format is based on Keep a Changelog.
This project adheres to Semantic Versioning.
[0.0.47] - 2020-12-22
Added
Changed
Deprecated
Removed
Fixed
Security
Installation
Use Holonix to work with this repository.
See:
v0.0.46
Changelog
The format is based on Keep a Changelog.
This project adheres to Semantic Versioning.
[0.0.46] - 2020-12-17
Added
Changed
Deprecated
Removed
Fixed
Security
Installation
Use Holonix to work with this repository.
See:
v0.0.45
Changelog
The format is based on Keep a Changelog.
This project adheres to Semantic Versioning.
[0.0.45] - 2020-09-18
Added
- PartialOrd and Ord impls for
SerializedBytes
Changed
Deprecated
Removed
Fixed
Security
Installation
Use Holonix to work with this repository.
See:
v0.0.43
Changelog
The format is based on Keep a Changelog.
This project adheres to Semantic Versioning.
[0.0.43] - 2020-08-28
Added
Changed
Deprecated
Removed
Fixed
Security
Installation
Use Holonix to work with this repository.
See:
v0.0.42
Changelog
The format is based on Keep a Changelog.
This project adheres to Semantic Versioning.
[0.0.42] - 2020-08-17
Added
Changed
- Uses
with_struct_map
andwith_string_variants
rmp_serde config for more robust serialization
Deprecated
Removed
Fixed
Security
Installation
Use Holonix to work with this repository.
See:
v0.0.41
Changelog
The format is based on Keep a Changelog.
This project adheres to Semantic Versioning.
[0.0.41] - 2020-08-05
Added
Changed
Deprecated
Removed
Fixed
Security
Installation
Use Holonix to work with this repository.
See: