Skip to content

Commit

Permalink
release (#209)
Browse files Browse the repository at this point in the history
* bump version

* changelog
  • Loading branch information
chenyan-dfinity authored Mar 18, 2021
1 parent ca718b7 commit 382f104
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

14 changes: 14 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@

# Changelog

## 2021-03-17

### Rust (0.6.18)

* `#[candid_method(init)]` to support init arguments in service actor
* Subtyping check for Candid types
* Handle subtyping for `reserved` and `int` in decoding

### Other

* Benchmark for Rust library with criterion
* `didc check` and `didc subtype` command to check for subtyping
* Conditional running CI for Coq or Rust library

## 2021-03-04 (Rust 0.6.17)

* Support `serde_bytes` for efficient handling of `&[u8]` and `Vec<u8>`
Expand Down
5 changes: 3 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.17"
version = "0.6.18"
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.3" }
candid_derive = { path = "../candid_derive", version = "=0.4.4" }
codespan-reporting = "0.9.5"
hex = "0.4.2"
ic-types = "0.1.1"
Expand Down Expand Up @@ -50,6 +50,7 @@ criterion = "0.3"
[[bench]]
name = "benchmark"
harness = false
path = "benches/benchmark.rs"

[features]
cdk = ["candid_derive/cdk"]
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.3"
version = "0.4.4"
edition = "2018"
authors = ["DFINITY Team"]
description = "Macros implementation of #[derive(CandidType)] for the Candid."
Expand Down

0 comments on commit 382f104

Please sign in to comment.