Skip to content

Commit

Permalink
release (#121)
Browse files Browse the repository at this point in the history
* release

* fix
  • Loading branch information
chenyan-dfinity committed Oct 20, 2020
1 parent c3dc0ad commit d1f8de7
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 33 deletions.
56 changes: 28 additions & 28 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 22 additions & 2 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,29 @@

# Changelog

## 2020-09-10 (Rust 0.6.2)
## 2020-10-20

* Fix a bug when decoding many record values.
### Spec

* Add service initialization parameters [#88](https://github.com/dfinity/candid/pull/88)
* Reverse subtyping on records and variants [#110](https://github.com/dfinity/candid/pull/110)

### Rust (0.6.4 -- 0.6.8)

* Support service constructor
* Export `init` types in JS binding for service constructor
* Improve pretty-printing for Candid values: underscore for numerals, blob shorthand for `vec nat8`.
* Disable pretty-printing for large vectors.
* Add attribute `#[candid_method]` to derive Candid types for functions.
* Add a feature flag `cdk` to generate candid path specifically for Rust CDK.

### Tools

* Candid UI canister to render a web UI for all running canisters on the network.

## 2020-09-10 (Rust 0.6.2 -- 0.6.3)

* Fix a bug when decoding nested record values.

## 2020-09-10 (Rust 0.6.1)

Expand Down
4 changes: 2 additions & 2 deletions rust/candid/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "candid"
version = "0.6.7"
version = "0.6.8"
edition = "2018"
authors = ["DFINITY Team"]
description = "Candid is an interface description language (IDL) for interacting with canisters running on the Internet Computer."
Expand All @@ -20,7 +20,7 @@ lalrpop = "0.19.0"

[dependencies]
byteorder = "1.3.4"
candid_derive = { path = "../candid_derive", version = "=0.4.0" }
candid_derive = { path = "../candid_derive", version = "=0.4.1" }
codespan-reporting = "0.9.5"
hex = "0.4.2"
ic-types = "0.1.1"
Expand Down
2 changes: 1 addition & 1 deletion rust/candid_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "candid_derive"
version = "0.4.0"
version = "0.4.1"
edition = "2018"
authors = ["DFINITY Team"]
description = "Macros implementation of #[derive(CandidType)] for the Candid."
Expand Down

0 comments on commit d1f8de7

Please sign in to comment.