diff --git a/Cargo.lock b/Cargo.lock index e8960b39..4f3e0c73 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -169,7 +169,7 @@ checksum = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de" [[package]] name = "candid" -version = "0.6.9" +version = "0.6.10" dependencies = [ "byteorder", "candid_derive", diff --git a/Changelog.md b/Changelog.md index fbe47661..556debe0 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,6 +1,17 @@ # Changelog +## 2020-11-05 + +### Spec + +* Rewrite description of deserialization [#128](https://github.com/dfinity/candid/pull/128) + +### Rust (0.6.9 -- 0.6.10) + +* Add result getter for serializer +* Implement CandidType for std::time::SystemTime and Duration + ## 2020-10-20 ### Spec diff --git a/rust/candid/Cargo.toml b/rust/candid/Cargo.toml index 2d08c8fa..429c4e9a 100644 --- a/rust/candid/Cargo.toml +++ b/rust/candid/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "candid" -version = "0.6.9" +version = "0.6.10" edition = "2018" authors = ["DFINITY Team"] description = "Candid is an interface description language (IDL) for interacting with canisters running on the Internet Computer."