Skip to content

Releases: holochain/holochain-serialization

v0.0.54

17 Apr 13:14
Compare
Choose a tag to compare

Changed

  • BREAKING: Updated dependencies rmp-serde and serde. 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

17 Jan 20:05
Compare
Choose a tag to compare
add readme

v0.0.50

21 Feb 18:39
Compare
Choose a tag to compare
Version v0.0.50

v0.0.49

17 Feb 15:08
Compare
Choose a tag to compare

Re-release v0.0.48 to fix bad versioning

v0.0.47

22 Dec 22:04
Compare
Choose a tag to compare

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

17 Dec 05:36
Compare
Choose a tag to compare

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

18 Sep 18:59
Compare
Choose a tag to compare

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

28 Aug 03:49
Compare
Choose a tag to compare

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

17 Aug 14:52
Compare
Choose a tag to compare

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 and with_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

05 Aug 22:29
Compare
Choose a tag to compare

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: