Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Recursive bounds loop the type checker #162

Closed
nomeata opened this issue Feb 8, 2019 · 5 comments
Closed

Recursive bounds loop the type checker #162

nomeata opened this issue Feb 8, 2019 · 5 comments
Assignees
Labels
duplicate This issue or pull request already exists

Comments

@nomeata
Copy link
Collaborator

nomeata commented Feb 8, 2019

func foo<A <: A>(x:A) : A { x };

is looping the type-checker.

@rossberg
Copy link
Contributor

rossberg commented Feb 8, 2019

So is

type A = A

when used. Unproductive type recursion needs to be rejected.

@rossberg rossberg self-assigned this Feb 8, 2019
@crusso
Copy link
Contributor

crusso commented Feb 11, 2019

For the CLR type bound checking, I think I implemented a simple check that tries to, given a binder with n related variables, tries to construct a path of length n by following type variable bounds only.
If you can, then the definition is acylic. If we can rely on type definitions being productive (so we don't have to unfold definition in bounds such as A <: T ?) that may work here too.

@nomeata
Copy link
Collaborator Author

nomeata commented Feb 14, 2019

If #155 is a duplicate of #76, then this is too. Closing this and #155 to have less tickets to migrate to JIRA.

@nomeata nomeata closed this as completed Feb 14, 2019
@nomeata nomeata added the duplicate This issue or pull request already exists label Feb 14, 2019
@nomeata
Copy link
Collaborator Author

nomeata commented Feb 14, 2019

Actually, no, they are slightly different. Anyways, I’ll create a JIRA ticket.

@nomeata
Copy link
Collaborator Author

nomeata commented Feb 14, 2019

dfinity-bot added a commit that referenced this issue Sep 19, 2020
## Changelog for motoko-base:
Branch: next-moc
Commits: [dfinity/motoko-base@cc57fd99...7cdbb04f](dfinity/motoko-base@cc57fd9...7cdbb04)

* [`8b749849`](dfinity/motoko-base@8b74984) Time module (Take II)
* [`c29ba993`](dfinity/motoko-base@c29ba99) Update vessel version and uses compiler binary tarballs ([dfinity-lab/motoko-base⁠#157](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/157))
* [`8f050e90`](dfinity/motoko-base@8f050e9) address comments
* [`cbf02e4d`](dfinity/motoko-base@cbf02e4) change Nat to Int
* [`84a0e412`](dfinity/motoko-base@84a0e41) update Float doc for Int conversion ([dfinity-lab/motoko-base⁠#162](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/162))
* [`5c93d001`](dfinity/motoko-base@5c93d00) Stack container class ([dfinity-lab/motoko-base⁠#152](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/152))
* [`76fd50b7`](dfinity/motoko-base@76fd50b) Documentation for RBTree module ([dfinity-lab/motoko-base⁠#140](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/140))
* [`2cc2e75f`](dfinity/motoko-base@2cc2e75) Fix the typo in the Time.mo source file so that it is pulled in with the next adoc generation
* [`09241278`](dfinity/motoko-base@0924127) Fix: off by one in size / height of RBTree ([dfinity-lab/motoko-base⁠#164](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/164))
* [`3dfaf958`](dfinity/motoko-base@3dfaf95) Add a simple example to the Time.mo source
* [`f0607703`](dfinity/motoko-base@f060770) Move example after the description of the now function
* [`856e66e9`](dfinity/motoko-base@856e66e) Update src/Time.mo
* [`c607f15c`](dfinity/motoko-base@c607f15) Add an extra line above the example
* [`3cd3496e`](dfinity/motoko-base@3cd3496) Fixes syntax errors in Option module docs ([dfinity-lab/motoko-base⁠#172](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/172))
* [`0ad167b3`](dfinity/motoko-base@0ad167b) Update List.mo ([dfinity-lab/motoko-base⁠#174](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/174))
* [`f2ad261d`](dfinity/motoko-base@f2ad261) Various version updates ([dfinity-lab/motoko-base⁠#173](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/173))
mergify bot pushed a commit that referenced this issue Sep 19, 2020
## Changelog for motoko-base:
Branch: next-moc
Commits: [dfinity/motoko-base@cc57fd99...7cdbb04f](dfinity/motoko-base@cc57fd9...7cdbb04)

* [`8b749849`](dfinity/motoko-base@8b74984) Time module (Take II)
* [`c29ba993`](dfinity/motoko-base@c29ba99) Update vessel version and uses compiler binary tarballs ([dfinity-lab/motoko-base⁠#157](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/157))
* [`8f050e90`](dfinity/motoko-base@8f050e9) address comments
* [`cbf02e4d`](dfinity/motoko-base@cbf02e4) change Nat to Int
* [`84a0e412`](dfinity/motoko-base@84a0e41) update Float doc for Int conversion ([dfinity-lab/motoko-base⁠#162](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/162))
* [`5c93d001`](dfinity/motoko-base@5c93d00) Stack container class ([dfinity-lab/motoko-base⁠#152](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/152))
* [`76fd50b7`](dfinity/motoko-base@76fd50b) Documentation for RBTree module ([dfinity-lab/motoko-base⁠#140](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/140))
* [`2cc2e75f`](dfinity/motoko-base@2cc2e75) Fix the typo in the Time.mo source file so that it is pulled in with the next adoc generation
* [`09241278`](dfinity/motoko-base@0924127) Fix: off by one in size / height of RBTree ([dfinity-lab/motoko-base⁠#164](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/164))
* [`3dfaf958`](dfinity/motoko-base@3dfaf95) Add a simple example to the Time.mo source
* [`f0607703`](dfinity/motoko-base@f060770) Move example after the description of the now function
* [`856e66e9`](dfinity/motoko-base@856e66e) Update src/Time.mo
* [`c607f15c`](dfinity/motoko-base@c607f15) Add an extra line above the example
* [`3cd3496e`](dfinity/motoko-base@3cd3496) Fixes syntax errors in Option module docs ([dfinity-lab/motoko-base⁠#172](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/172))
* [`0ad167b3`](dfinity/motoko-base@0ad167b) Update List.mo ([dfinity-lab/motoko-base⁠#174](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/174))
* [`f2ad261d`](dfinity/motoko-base@f2ad261) Various version updates ([dfinity-lab/motoko-base⁠#173](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/173))
dfinity-bot added a commit that referenced this issue Jan 16, 2021
Branch: master
Commits: [dfinity/candid@25fb8470...3ac7e9d3](dfinity/candid@25fb847...3ac7e9d)

* [`ea2c72f5`](dfinity/candid@ea2c72f) support reference types ([dfinity/candid⁠#153](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/153))
* [`d48bc04c`](dfinity/candid@d48bc04) fix record_nesting_depth for native Rust types ([dfinity/candid⁠#155](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/155))
* [`e54d3e4a`](dfinity/candid@e54d3e4) support more Rust built-in types ([dfinity/candid⁠#156](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/156))
* [`3b3637e1`](dfinity/candid@3b3637e) release ([dfinity/candid⁠#157](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/157))
* [`98d73586`](dfinity/candid@98d7358) debug print for values ([dfinity/candid⁠#159](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/159))
* [`620ad802`](dfinity/candid@620ad80) fix debug print
* [`01d23d61`](dfinity/candid@01d23d6) Candid test suite: More tests related to references ([dfinity/candid⁠#160](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/160))
* [`c59c2fd1`](dfinity/candid@c59c2fd) release
* [`3ac7e9d3`](dfinity/candid@3ac7e9d) fix type annotation in parser ([dfinity/candid⁠#162](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/162))
dfinity-bot added a commit that referenced this issue Jan 18, 2021
Branch: master
Commits: [dfinity/candid@25fb8470...3ac7e9d3](dfinity/candid@25fb847...3ac7e9d)

* [`ea2c72f5`](dfinity/candid@ea2c72f) support reference types ([dfinity/candid⁠#153](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/153))
* [`d48bc04c`](dfinity/candid@d48bc04) fix record_nesting_depth for native Rust types ([dfinity/candid⁠#155](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/155))
* [`e54d3e4a`](dfinity/candid@e54d3e4) support more Rust built-in types ([dfinity/candid⁠#156](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/156))
* [`3b3637e1`](dfinity/candid@3b3637e) release ([dfinity/candid⁠#157](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/157))
* [`98d73586`](dfinity/candid@98d7358) debug print for values ([dfinity/candid⁠#159](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/159))
* [`620ad802`](dfinity/candid@620ad80) fix debug print
* [`01d23d61`](dfinity/candid@01d23d6) Candid test suite: More tests related to references ([dfinity/candid⁠#160](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/160))
* [`c59c2fd1`](dfinity/candid@c59c2fd) release
* [`3ac7e9d3`](dfinity/candid@3ac7e9d) fix type annotation in parser ([dfinity/candid⁠#162](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/162))
dfinity-bot added a commit that referenced this issue Jan 20, 2021
Branch: master
Commits: [dfinity/candid@25fb8470...315cb991](dfinity/candid@25fb847...315cb99)

* [`ea2c72f5`](dfinity/candid@ea2c72f) support reference types ([dfinity/candid⁠#153](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/153))
* [`d48bc04c`](dfinity/candid@d48bc04) fix record_nesting_depth for native Rust types ([dfinity/candid⁠#155](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/155))
* [`e54d3e4a`](dfinity/candid@e54d3e4) support more Rust built-in types ([dfinity/candid⁠#156](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/156))
* [`3b3637e1`](dfinity/candid@3b3637e) release ([dfinity/candid⁠#157](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/157))
* [`98d73586`](dfinity/candid@98d7358) debug print for values ([dfinity/candid⁠#159](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/159))
* [`620ad802`](dfinity/candid@620ad80) fix debug print
* [`01d23d61`](dfinity/candid@01d23d6) Candid test suite: More tests related to references ([dfinity/candid⁠#160](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/160))
* [`c59c2fd1`](dfinity/candid@c59c2fd) release
* [`3ac7e9d3`](dfinity/candid@3ac7e9d) fix type annotation in parser ([dfinity/candid⁠#162](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/162))
* [`432c4289`](dfinity/candid@432c428) A Candid users’s guide ([dfinity/candid⁠#158](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/158))
* [`315cb991`](dfinity/candid@315cb99) Coq: MiniCandid ([dfinity/candid⁠#147](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/147))
dfinity-bot added a commit that referenced this issue Jan 21, 2021
Branch: master
Commits: [dfinity/candid@25fb8470...83fdff28](dfinity/candid@25fb847...83fdff2)

* [`ea2c72f5`](dfinity/candid@ea2c72f) support reference types ([dfinity/candid⁠#153](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/153))
* [`d48bc04c`](dfinity/candid@d48bc04) fix record_nesting_depth for native Rust types ([dfinity/candid⁠#155](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/155))
* [`e54d3e4a`](dfinity/candid@e54d3e4) support more Rust built-in types ([dfinity/candid⁠#156](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/156))
* [`3b3637e1`](dfinity/candid@3b3637e) release ([dfinity/candid⁠#157](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/157))
* [`98d73586`](dfinity/candid@98d7358) debug print for values ([dfinity/candid⁠#159](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/159))
* [`620ad802`](dfinity/candid@620ad80) fix debug print
* [`01d23d61`](dfinity/candid@01d23d6) Candid test suite: More tests related to references ([dfinity/candid⁠#160](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/160))
* [`c59c2fd1`](dfinity/candid@c59c2fd) release
* [`3ac7e9d3`](dfinity/candid@3ac7e9d) fix type annotation in parser ([dfinity/candid⁠#162](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/162))
* [`432c4289`](dfinity/candid@432c428) A Candid users’s guide ([dfinity/candid⁠#158](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/158))
* [`315cb991`](dfinity/candid@315cb99) Coq: MiniCandid ([dfinity/candid⁠#147](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/147))
* [`83fdff28`](dfinity/candid@83fdff2) Improve wording for type mismatches ([dfinity/candid⁠#167](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/167))
dfinity-bot added a commit that referenced this issue Jan 23, 2021
Branch: master
Commits: [dfinity/candid@25fb8470...3028f5ed](dfinity/candid@25fb847...3028f5e)

* [`ea2c72f5`](dfinity/candid@ea2c72f) support reference types ([dfinity/candid⁠#153](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/153))
* [`d48bc04c`](dfinity/candid@d48bc04) fix record_nesting_depth for native Rust types ([dfinity/candid⁠#155](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/155))
* [`e54d3e4a`](dfinity/candid@e54d3e4) support more Rust built-in types ([dfinity/candid⁠#156](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/156))
* [`3b3637e1`](dfinity/candid@3b3637e) release ([dfinity/candid⁠#157](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/157))
* [`98d73586`](dfinity/candid@98d7358) debug print for values ([dfinity/candid⁠#159](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/159))
* [`620ad802`](dfinity/candid@620ad80) fix debug print
* [`01d23d61`](dfinity/candid@01d23d6) Candid test suite: More tests related to references ([dfinity/candid⁠#160](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/160))
* [`c59c2fd1`](dfinity/candid@c59c2fd) release
* [`3ac7e9d3`](dfinity/candid@3ac7e9d) fix type annotation in parser ([dfinity/candid⁠#162](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/162))
* [`432c4289`](dfinity/candid@432c428) A Candid users’s guide ([dfinity/candid⁠#158](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/158))
* [`315cb991`](dfinity/candid@315cb99) Coq: MiniCandid ([dfinity/candid⁠#147](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/147))
* [`83fdff28`](dfinity/candid@83fdff2) Improve wording for type mismatches ([dfinity/candid⁠#167](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/167))
* [`3028f5ed`](dfinity/candid@3028f5e) Lg/candid rev pre split ([dfinity/candid⁠#169](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/169))
dfinity-bot added a commit that referenced this issue Jan 25, 2021
Branch: master
Commits: [dfinity/candid@25fb8470...3028f5ed](dfinity/candid@25fb847...3028f5e)

* [`ea2c72f5`](dfinity/candid@ea2c72f) support reference types ([dfinity/candid⁠#153](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/153))
* [`d48bc04c`](dfinity/candid@d48bc04) fix record_nesting_depth for native Rust types ([dfinity/candid⁠#155](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/155))
* [`e54d3e4a`](dfinity/candid@e54d3e4) support more Rust built-in types ([dfinity/candid⁠#156](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/156))
* [`3b3637e1`](dfinity/candid@3b3637e) release ([dfinity/candid⁠#157](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/157))
* [`98d73586`](dfinity/candid@98d7358) debug print for values ([dfinity/candid⁠#159](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/159))
* [`620ad802`](dfinity/candid@620ad80) fix debug print
* [`01d23d61`](dfinity/candid@01d23d6) Candid test suite: More tests related to references ([dfinity/candid⁠#160](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/160))
* [`c59c2fd1`](dfinity/candid@c59c2fd) release
* [`3ac7e9d3`](dfinity/candid@3ac7e9d) fix type annotation in parser ([dfinity/candid⁠#162](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/162))
* [`432c4289`](dfinity/candid@432c428) A Candid users’s guide ([dfinity/candid⁠#158](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/158))
* [`315cb991`](dfinity/candid@315cb99) Coq: MiniCandid ([dfinity/candid⁠#147](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/147))
* [`83fdff28`](dfinity/candid@83fdff2) Improve wording for type mismatches ([dfinity/candid⁠#167](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/167))
* [`3028f5ed`](dfinity/candid@3028f5e) Lg/candid rev pre split ([dfinity/candid⁠#169](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/169))
dfinity-bot added a commit that referenced this issue Jan 26, 2021
Branch: master
Commits: [dfinity/candid@25fb8470...3028f5ed](dfinity/candid@25fb847...3028f5e)

* [`ea2c72f5`](dfinity/candid@ea2c72f) support reference types ([dfinity/candid⁠#153](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/153))
* [`d48bc04c`](dfinity/candid@d48bc04) fix record_nesting_depth for native Rust types ([dfinity/candid⁠#155](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/155))
* [`e54d3e4a`](dfinity/candid@e54d3e4) support more Rust built-in types ([dfinity/candid⁠#156](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/156))
* [`3b3637e1`](dfinity/candid@3b3637e) release ([dfinity/candid⁠#157](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/157))
* [`98d73586`](dfinity/candid@98d7358) debug print for values ([dfinity/candid⁠#159](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/159))
* [`620ad802`](dfinity/candid@620ad80) fix debug print
* [`01d23d61`](dfinity/candid@01d23d6) Candid test suite: More tests related to references ([dfinity/candid⁠#160](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/160))
* [`c59c2fd1`](dfinity/candid@c59c2fd) release
* [`3ac7e9d3`](dfinity/candid@3ac7e9d) fix type annotation in parser ([dfinity/candid⁠#162](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/162))
* [`432c4289`](dfinity/candid@432c428) A Candid users’s guide ([dfinity/candid⁠#158](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/158))
* [`315cb991`](dfinity/candid@315cb99) Coq: MiniCandid ([dfinity/candid⁠#147](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/147))
* [`83fdff28`](dfinity/candid@83fdff2) Improve wording for type mismatches ([dfinity/candid⁠#167](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/167))
* [`3028f5ed`](dfinity/candid@3028f5e) Lg/candid rev pre split ([dfinity/candid⁠#169](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/169))
dfinity-bot added a commit that referenced this issue Jan 28, 2021
Branch: master
Commits: [dfinity/candid@25fb8470...6c8d4e39](dfinity/candid@25fb847...6c8d4e3)

* [`ea2c72f5`](dfinity/candid@ea2c72f) support reference types ([dfinity/candid⁠#153](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/153))
* [`d48bc04c`](dfinity/candid@d48bc04) fix record_nesting_depth for native Rust types ([dfinity/candid⁠#155](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/155))
* [`e54d3e4a`](dfinity/candid@e54d3e4) support more Rust built-in types ([dfinity/candid⁠#156](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/156))
* [`3b3637e1`](dfinity/candid@3b3637e) release ([dfinity/candid⁠#157](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/157))
* [`98d73586`](dfinity/candid@98d7358) debug print for values ([dfinity/candid⁠#159](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/159))
* [`620ad802`](dfinity/candid@620ad80) fix debug print
* [`01d23d61`](dfinity/candid@01d23d6) Candid test suite: More tests related to references ([dfinity/candid⁠#160](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/160))
* [`c59c2fd1`](dfinity/candid@c59c2fd) release
* [`3ac7e9d3`](dfinity/candid@3ac7e9d) fix type annotation in parser ([dfinity/candid⁠#162](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/162))
* [`432c4289`](dfinity/candid@432c428) A Candid users’s guide ([dfinity/candid⁠#158](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/158))
* [`315cb991`](dfinity/candid@315cb99) Coq: MiniCandid ([dfinity/candid⁠#147](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/147))
* [`83fdff28`](dfinity/candid@83fdff2) Improve wording for type mismatches ([dfinity/candid⁠#167](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/167))
* [`3028f5ed`](dfinity/candid@3028f5e) Lg/candid rev pre split ([dfinity/candid⁠#169](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/169))
* [`6c8d4e39`](dfinity/candid@6c8d4e3) Lg/candid users guide ([dfinity/candid⁠#170](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/170))
dfinity-bot added a commit that referenced this issue Jan 30, 2021
Branch: master
Commits: [dfinity/candid@25fb8470...0c2205fc](dfinity/candid@25fb847...0c2205f)

* [`ea2c72f5`](dfinity/candid@ea2c72f) support reference types ([dfinity/candid⁠#153](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/153))
* [`d48bc04c`](dfinity/candid@d48bc04) fix record_nesting_depth for native Rust types ([dfinity/candid⁠#155](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/155))
* [`e54d3e4a`](dfinity/candid@e54d3e4) support more Rust built-in types ([dfinity/candid⁠#156](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/156))
* [`3b3637e1`](dfinity/candid@3b3637e) release ([dfinity/candid⁠#157](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/157))
* [`98d73586`](dfinity/candid@98d7358) debug print for values ([dfinity/candid⁠#159](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/159))
* [`620ad802`](dfinity/candid@620ad80) fix debug print
* [`01d23d61`](dfinity/candid@01d23d6) Candid test suite: More tests related to references ([dfinity/candid⁠#160](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/160))
* [`c59c2fd1`](dfinity/candid@c59c2fd) release
* [`3ac7e9d3`](dfinity/candid@3ac7e9d) fix type annotation in parser ([dfinity/candid⁠#162](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/162))
* [`432c4289`](dfinity/candid@432c428) A Candid users’s guide ([dfinity/candid⁠#158](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/158))
* [`315cb991`](dfinity/candid@315cb99) Coq: MiniCandid ([dfinity/candid⁠#147](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/147))
* [`83fdff28`](dfinity/candid@83fdff2) Improve wording for type mismatches ([dfinity/candid⁠#167](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/167))
* [`3028f5ed`](dfinity/candid@3028f5e) Lg/candid rev pre split ([dfinity/candid⁠#169](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/169))
* [`6c8d4e39`](dfinity/candid@6c8d4e3) Lg/candid users guide ([dfinity/candid⁠#170](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/170))
* [`0c2205fc`](dfinity/candid@0c2205f) FIx typo toll>tool ([dfinity/candid⁠#172](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/172))
dfinity-bot added a commit that referenced this issue Feb 1, 2021
Branch: master
Commits: [dfinity/candid@25fb8470...0c2205fc](dfinity/candid@25fb847...0c2205f)

* [`ea2c72f5`](dfinity/candid@ea2c72f) support reference types ([dfinity/candid⁠#153](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/153))
* [`d48bc04c`](dfinity/candid@d48bc04) fix record_nesting_depth for native Rust types ([dfinity/candid⁠#155](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/155))
* [`e54d3e4a`](dfinity/candid@e54d3e4) support more Rust built-in types ([dfinity/candid⁠#156](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/156))
* [`3b3637e1`](dfinity/candid@3b3637e) release ([dfinity/candid⁠#157](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/157))
* [`98d73586`](dfinity/candid@98d7358) debug print for values ([dfinity/candid⁠#159](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/159))
* [`620ad802`](dfinity/candid@620ad80) fix debug print
* [`01d23d61`](dfinity/candid@01d23d6) Candid test suite: More tests related to references ([dfinity/candid⁠#160](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/160))
* [`c59c2fd1`](dfinity/candid@c59c2fd) release
* [`3ac7e9d3`](dfinity/candid@3ac7e9d) fix type annotation in parser ([dfinity/candid⁠#162](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/162))
* [`432c4289`](dfinity/candid@432c428) A Candid users’s guide ([dfinity/candid⁠#158](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/158))
* [`315cb991`](dfinity/candid@315cb99) Coq: MiniCandid ([dfinity/candid⁠#147](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/147))
* [`83fdff28`](dfinity/candid@83fdff2) Improve wording for type mismatches ([dfinity/candid⁠#167](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/167))
* [`3028f5ed`](dfinity/candid@3028f5e) Lg/candid rev pre split ([dfinity/candid⁠#169](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/169))
* [`6c8d4e39`](dfinity/candid@6c8d4e3) Lg/candid users guide ([dfinity/candid⁠#170](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/170))
* [`0c2205fc`](dfinity/candid@0c2205f) FIx typo toll>tool ([dfinity/candid⁠#172](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/172))
dfinity-bot added a commit that referenced this issue Feb 2, 2021
## Changelog for candid:
Branch: master
Commits: [dfinity/candid@25fb8470...63d9f6fd](dfinity/candid@25fb847...63d9f6f)

* [`ea2c72f5`](dfinity/candid@ea2c72f) support reference types ([dfinity/candid⁠#153](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/153))
* [`d48bc04c`](dfinity/candid@d48bc04) fix record_nesting_depth for native Rust types ([dfinity/candid⁠#155](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/155))
* [`e54d3e4a`](dfinity/candid@e54d3e4) support more Rust built-in types ([dfinity/candid⁠#156](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/156))
* [`3b3637e1`](dfinity/candid@3b3637e) release ([dfinity/candid⁠#157](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/157))
* [`98d73586`](dfinity/candid@98d7358) debug print for values ([dfinity/candid⁠#159](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/159))
* [`620ad802`](dfinity/candid@620ad80) fix debug print
* [`01d23d61`](dfinity/candid@01d23d6) Candid test suite: More tests related to references ([dfinity/candid⁠#160](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/160))
* [`c59c2fd1`](dfinity/candid@c59c2fd) release
* [`3ac7e9d3`](dfinity/candid@3ac7e9d) fix type annotation in parser ([dfinity/candid⁠#162](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/162))
* [`432c4289`](dfinity/candid@432c428) A Candid users’s guide ([dfinity/candid⁠#158](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/158))
* [`315cb991`](dfinity/candid@315cb99) Coq: MiniCandid ([dfinity/candid⁠#147](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/147))
* [`83fdff28`](dfinity/candid@83fdff2) Improve wording for type mismatches ([dfinity/candid⁠#167](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/167))
* [`3028f5ed`](dfinity/candid@3028f5e) Lg/candid rev pre split ([dfinity/candid⁠#169](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/169))
* [`6c8d4e39`](dfinity/candid@6c8d4e3) Lg/candid users guide ([dfinity/candid⁠#170](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/170))
* [`0c2205fc`](dfinity/candid@0c2205f) FIx typo toll>tool ([dfinity/candid⁠#172](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/172))
* [`63d9f6fd`](dfinity/candid@63d9f6f) Test suite: A test that invalid unicode in method names is rejected ([dfinity/candid⁠#174](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/174))
dfinity-bot added a commit that referenced this issue Feb 2, 2021
## Changelog for candid:
Branch: master
Commits: [dfinity/candid@25fb8470...9fbffdcc](dfinity/candid@25fb847...9fbffdc)

* [`ea2c72f5`](dfinity/candid@ea2c72f) support reference types ([dfinity/candid⁠#153](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/153))
* [`d48bc04c`](dfinity/candid@d48bc04) fix record_nesting_depth for native Rust types ([dfinity/candid⁠#155](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/155))
* [`e54d3e4a`](dfinity/candid@e54d3e4) support more Rust built-in types ([dfinity/candid⁠#156](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/156))
* [`3b3637e1`](dfinity/candid@3b3637e) release ([dfinity/candid⁠#157](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/157))
* [`98d73586`](dfinity/candid@98d7358) debug print for values ([dfinity/candid⁠#159](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/159))
* [`620ad802`](dfinity/candid@620ad80) fix debug print
* [`01d23d61`](dfinity/candid@01d23d6) Candid test suite: More tests related to references ([dfinity/candid⁠#160](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/160))
* [`c59c2fd1`](dfinity/candid@c59c2fd) release
* [`3ac7e9d3`](dfinity/candid@3ac7e9d) fix type annotation in parser ([dfinity/candid⁠#162](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/162))
* [`432c4289`](dfinity/candid@432c428) A Candid users’s guide ([dfinity/candid⁠#158](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/158))
* [`315cb991`](dfinity/candid@315cb99) Coq: MiniCandid ([dfinity/candid⁠#147](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/147))
* [`83fdff28`](dfinity/candid@83fdff2) Improve wording for type mismatches ([dfinity/candid⁠#167](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/167))
* [`3028f5ed`](dfinity/candid@3028f5e) Lg/candid rev pre split ([dfinity/candid⁠#169](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/169))
* [`6c8d4e39`](dfinity/candid@6c8d4e3) Lg/candid users guide ([dfinity/candid⁠#170](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/170))
* [`0c2205fc`](dfinity/candid@0c2205f) FIx typo toll>tool ([dfinity/candid⁠#172](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/172))
* [`63d9f6fd`](dfinity/candid@63d9f6f) Test suite: A test that invalid unicode in method names is rejected ([dfinity/candid⁠#174](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/174))
* [`dad82102`](dfinity/candid@dad8210) generate random candid values ([dfinity/candid⁠#166](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/166))
* [`2720d995`](dfinity/candid@2720d99) Release ([dfinity/candid⁠#176](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/176))
* [`9fbffdcc`](dfinity/candid@9fbffdc) Meta-Theory: Clarify transitive coherence ([dfinity/candid⁠#173](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/173))
dfinity-bot added a commit that referenced this issue Feb 2, 2021
Branch: master
Commits: [dfinity/candid@25fb8470...9fbffdcc](dfinity/candid@25fb847...9fbffdc)

* [`ea2c72f5`](dfinity/candid@ea2c72f) support reference types ([dfinity/candid⁠#153](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/153))
* [`d48bc04c`](dfinity/candid@d48bc04) fix record_nesting_depth for native Rust types ([dfinity/candid⁠#155](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/155))
* [`e54d3e4a`](dfinity/candid@e54d3e4) support more Rust built-in types ([dfinity/candid⁠#156](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/156))
* [`3b3637e1`](dfinity/candid@3b3637e) release ([dfinity/candid⁠#157](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/157))
* [`98d73586`](dfinity/candid@98d7358) debug print for values ([dfinity/candid⁠#159](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/159))
* [`620ad802`](dfinity/candid@620ad80) fix debug print
* [`01d23d61`](dfinity/candid@01d23d6) Candid test suite: More tests related to references ([dfinity/candid⁠#160](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/160))
* [`c59c2fd1`](dfinity/candid@c59c2fd) release
* [`3ac7e9d3`](dfinity/candid@3ac7e9d) fix type annotation in parser ([dfinity/candid⁠#162](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/162))
* [`432c4289`](dfinity/candid@432c428) A Candid users’s guide ([dfinity/candid⁠#158](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/158))
* [`315cb991`](dfinity/candid@315cb99) Coq: MiniCandid ([dfinity/candid⁠#147](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/147))
* [`83fdff28`](dfinity/candid@83fdff2) Improve wording for type mismatches ([dfinity/candid⁠#167](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/167))
* [`3028f5ed`](dfinity/candid@3028f5e) Lg/candid rev pre split ([dfinity/candid⁠#169](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/169))
* [`6c8d4e39`](dfinity/candid@6c8d4e3) Lg/candid users guide ([dfinity/candid⁠#170](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/170))
* [`0c2205fc`](dfinity/candid@0c2205f) FIx typo toll>tool ([dfinity/candid⁠#172](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/172))
* [`63d9f6fd`](dfinity/candid@63d9f6f) Test suite: A test that invalid unicode in method names is rejected ([dfinity/candid⁠#174](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/174))
* [`dad82102`](dfinity/candid@dad8210) generate random candid values ([dfinity/candid⁠#166](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/166))
* [`2720d995`](dfinity/candid@2720d99) Release ([dfinity/candid⁠#176](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/176))
* [`9fbffdcc`](dfinity/candid@9fbffdc) Meta-Theory: Clarify transitive coherence ([dfinity/candid⁠#173](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/173))
dfinity-bot added a commit that referenced this issue Feb 2, 2021
Branch: master
Commits: [dfinity/candid@25fb8470...9fbffdcc](dfinity/candid@25fb847...9fbffdc)

* [`ea2c72f5`](dfinity/candid@ea2c72f) support reference types ([dfinity/candid⁠#153](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/153))
* [`d48bc04c`](dfinity/candid@d48bc04) fix record_nesting_depth for native Rust types ([dfinity/candid⁠#155](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/155))
* [`e54d3e4a`](dfinity/candid@e54d3e4) support more Rust built-in types ([dfinity/candid⁠#156](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/156))
* [`3b3637e1`](dfinity/candid@3b3637e) release ([dfinity/candid⁠#157](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/157))
* [`98d73586`](dfinity/candid@98d7358) debug print for values ([dfinity/candid⁠#159](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/159))
* [`620ad802`](dfinity/candid@620ad80) fix debug print
* [`01d23d61`](dfinity/candid@01d23d6) Candid test suite: More tests related to references ([dfinity/candid⁠#160](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/160))
* [`c59c2fd1`](dfinity/candid@c59c2fd) release
* [`3ac7e9d3`](dfinity/candid@3ac7e9d) fix type annotation in parser ([dfinity/candid⁠#162](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/162))
* [`432c4289`](dfinity/candid@432c428) A Candid users’s guide ([dfinity/candid⁠#158](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/158))
* [`315cb991`](dfinity/candid@315cb99) Coq: MiniCandid ([dfinity/candid⁠#147](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/147))
* [`83fdff28`](dfinity/candid@83fdff2) Improve wording for type mismatches ([dfinity/candid⁠#167](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/167))
* [`3028f5ed`](dfinity/candid@3028f5e) Lg/candid rev pre split ([dfinity/candid⁠#169](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/169))
* [`6c8d4e39`](dfinity/candid@6c8d4e3) Lg/candid users guide ([dfinity/candid⁠#170](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/170))
* [`0c2205fc`](dfinity/candid@0c2205f) FIx typo toll>tool ([dfinity/candid⁠#172](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/172))
* [`63d9f6fd`](dfinity/candid@63d9f6f) Test suite: A test that invalid unicode in method names is rejected ([dfinity/candid⁠#174](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/174))
* [`dad82102`](dfinity/candid@dad8210) generate random candid values ([dfinity/candid⁠#166](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/166))
* [`2720d995`](dfinity/candid@2720d99) Release ([dfinity/candid⁠#176](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/176))
* [`9fbffdcc`](dfinity/candid@9fbffdc) Meta-Theory: Clarify transitive coherence ([dfinity/candid⁠#173](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/173))
dfinity-bot added a commit that referenced this issue Feb 2, 2021
Branch: master
Commits: [dfinity/candid@25fb8470...9fbffdcc](dfinity/candid@25fb847...9fbffdc)

* [`ea2c72f5`](dfinity/candid@ea2c72f) support reference types ([dfinity/candid⁠#153](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/153))
* [`d48bc04c`](dfinity/candid@d48bc04) fix record_nesting_depth for native Rust types ([dfinity/candid⁠#155](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/155))
* [`e54d3e4a`](dfinity/candid@e54d3e4) support more Rust built-in types ([dfinity/candid⁠#156](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/156))
* [`3b3637e1`](dfinity/candid@3b3637e) release ([dfinity/candid⁠#157](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/157))
* [`98d73586`](dfinity/candid@98d7358) debug print for values ([dfinity/candid⁠#159](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/159))
* [`620ad802`](dfinity/candid@620ad80) fix debug print
* [`01d23d61`](dfinity/candid@01d23d6) Candid test suite: More tests related to references ([dfinity/candid⁠#160](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/160))
* [`c59c2fd1`](dfinity/candid@c59c2fd) release
* [`3ac7e9d3`](dfinity/candid@3ac7e9d) fix type annotation in parser ([dfinity/candid⁠#162](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/162))
* [`432c4289`](dfinity/candid@432c428) A Candid users’s guide ([dfinity/candid⁠#158](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/158))
* [`315cb991`](dfinity/candid@315cb99) Coq: MiniCandid ([dfinity/candid⁠#147](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/147))
* [`83fdff28`](dfinity/candid@83fdff2) Improve wording for type mismatches ([dfinity/candid⁠#167](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/167))
* [`3028f5ed`](dfinity/candid@3028f5e) Lg/candid rev pre split ([dfinity/candid⁠#169](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/169))
* [`6c8d4e39`](dfinity/candid@6c8d4e3) Lg/candid users guide ([dfinity/candid⁠#170](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/170))
* [`0c2205fc`](dfinity/candid@0c2205f) FIx typo toll>tool ([dfinity/candid⁠#172](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/172))
* [`63d9f6fd`](dfinity/candid@63d9f6f) Test suite: A test that invalid unicode in method names is rejected ([dfinity/candid⁠#174](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/174))
* [`dad82102`](dfinity/candid@dad8210) generate random candid values ([dfinity/candid⁠#166](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/166))
* [`2720d995`](dfinity/candid@2720d99) Release ([dfinity/candid⁠#176](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/176))
* [`9fbffdcc`](dfinity/candid@9fbffdc) Meta-Theory: Clarify transitive coherence ([dfinity/candid⁠#173](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/173))
dfinity-bot added a commit that referenced this issue Feb 3, 2021
Branch: master
Commits: [dfinity/candid@25fb8470...9fbffdcc](dfinity/candid@25fb847...9fbffdc)

* [`ea2c72f5`](dfinity/candid@ea2c72f) support reference types ([dfinity/candid⁠#153](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/153))
* [`d48bc04c`](dfinity/candid@d48bc04) fix record_nesting_depth for native Rust types ([dfinity/candid⁠#155](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/155))
* [`e54d3e4a`](dfinity/candid@e54d3e4) support more Rust built-in types ([dfinity/candid⁠#156](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/156))
* [`3b3637e1`](dfinity/candid@3b3637e) release ([dfinity/candid⁠#157](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/157))
* [`98d73586`](dfinity/candid@98d7358) debug print for values ([dfinity/candid⁠#159](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/159))
* [`620ad802`](dfinity/candid@620ad80) fix debug print
* [`01d23d61`](dfinity/candid@01d23d6) Candid test suite: More tests related to references ([dfinity/candid⁠#160](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/160))
* [`c59c2fd1`](dfinity/candid@c59c2fd) release
* [`3ac7e9d3`](dfinity/candid@3ac7e9d) fix type annotation in parser ([dfinity/candid⁠#162](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/162))
* [`432c4289`](dfinity/candid@432c428) A Candid users’s guide ([dfinity/candid⁠#158](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/158))
* [`315cb991`](dfinity/candid@315cb99) Coq: MiniCandid ([dfinity/candid⁠#147](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/147))
* [`83fdff28`](dfinity/candid@83fdff2) Improve wording for type mismatches ([dfinity/candid⁠#167](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/167))
* [`3028f5ed`](dfinity/candid@3028f5e) Lg/candid rev pre split ([dfinity/candid⁠#169](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/169))
* [`6c8d4e39`](dfinity/candid@6c8d4e3) Lg/candid users guide ([dfinity/candid⁠#170](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/170))
* [`0c2205fc`](dfinity/candid@0c2205f) FIx typo toll>tool ([dfinity/candid⁠#172](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/172))
* [`63d9f6fd`](dfinity/candid@63d9f6f) Test suite: A test that invalid unicode in method names is rejected ([dfinity/candid⁠#174](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/174))
* [`dad82102`](dfinity/candid@dad8210) generate random candid values ([dfinity/candid⁠#166](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/166))
* [`2720d995`](dfinity/candid@2720d99) Release ([dfinity/candid⁠#176](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/176))
* [`9fbffdcc`](dfinity/candid@9fbffdc) Meta-Theory: Clarify transitive coherence ([dfinity/candid⁠#173](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/173))
dfinity-bot added a commit that referenced this issue Feb 4, 2021
Branch: master
Commits: [dfinity/candid@25fb8470...b65c0859](dfinity/candid@25fb847...b65c085)

* [`ea2c72f5`](dfinity/candid@ea2c72f) support reference types ([dfinity/candid⁠#153](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/153))
* [`d48bc04c`](dfinity/candid@d48bc04) fix record_nesting_depth for native Rust types ([dfinity/candid⁠#155](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/155))
* [`e54d3e4a`](dfinity/candid@e54d3e4) support more Rust built-in types ([dfinity/candid⁠#156](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/156))
* [`3b3637e1`](dfinity/candid@3b3637e) release ([dfinity/candid⁠#157](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/157))
* [`98d73586`](dfinity/candid@98d7358) debug print for values ([dfinity/candid⁠#159](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/159))
* [`620ad802`](dfinity/candid@620ad80) fix debug print
* [`01d23d61`](dfinity/candid@01d23d6) Candid test suite: More tests related to references ([dfinity/candid⁠#160](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/160))
* [`c59c2fd1`](dfinity/candid@c59c2fd) release
* [`3ac7e9d3`](dfinity/candid@3ac7e9d) fix type annotation in parser ([dfinity/candid⁠#162](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/162))
* [`432c4289`](dfinity/candid@432c428) A Candid users’s guide ([dfinity/candid⁠#158](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/158))
* [`315cb991`](dfinity/candid@315cb99) Coq: MiniCandid ([dfinity/candid⁠#147](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/147))
* [`83fdff28`](dfinity/candid@83fdff2) Improve wording for type mismatches ([dfinity/candid⁠#167](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/167))
* [`3028f5ed`](dfinity/candid@3028f5e) Lg/candid rev pre split ([dfinity/candid⁠#169](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/169))
* [`6c8d4e39`](dfinity/candid@6c8d4e3) Lg/candid users guide ([dfinity/candid⁠#170](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/170))
* [`0c2205fc`](dfinity/candid@0c2205f) FIx typo toll>tool ([dfinity/candid⁠#172](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/172))
* [`63d9f6fd`](dfinity/candid@63d9f6f) Test suite: A test that invalid unicode in method names is rejected ([dfinity/candid⁠#174](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/174))
* [`dad82102`](dfinity/candid@dad8210) generate random candid values ([dfinity/candid⁠#166](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/166))
* [`2720d995`](dfinity/candid@2720d99) Release ([dfinity/candid⁠#176](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/176))
* [`9fbffdcc`](dfinity/candid@9fbffdc) Meta-Theory: Clarify transitive coherence ([dfinity/candid⁠#173](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/173))
* [`8acbbd47`](dfinity/candid@8acbbd4) Update README.md
* [`05ff9f82`](dfinity/candid@05ff9f8) Fix RUSTSEC-2020-0122 by upgrading logos which upgrades beef ([dfinity/candid⁠#179](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/179))
* [`b65c0859`](dfinity/candid@b65c085) Candid test suite: Method sorting test ([dfinity/candid⁠#177](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/177))
dfinity-bot added a commit that referenced this issue Feb 6, 2021
Branch: master
Commits: [dfinity/candid@25fb8470...8df6e6c0](dfinity/candid@25fb847...8df6e6c)

* [`ea2c72f5`](dfinity/candid@ea2c72f) support reference types ([dfinity/candid⁠#153](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/153))
* [`d48bc04c`](dfinity/candid@d48bc04) fix record_nesting_depth for native Rust types ([dfinity/candid⁠#155](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/155))
* [`e54d3e4a`](dfinity/candid@e54d3e4) support more Rust built-in types ([dfinity/candid⁠#156](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/156))
* [`3b3637e1`](dfinity/candid@3b3637e) release ([dfinity/candid⁠#157](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/157))
* [`98d73586`](dfinity/candid@98d7358) debug print for values ([dfinity/candid⁠#159](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/159))
* [`620ad802`](dfinity/candid@620ad80) fix debug print
* [`01d23d61`](dfinity/candid@01d23d6) Candid test suite: More tests related to references ([dfinity/candid⁠#160](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/160))
* [`c59c2fd1`](dfinity/candid@c59c2fd) release
* [`3ac7e9d3`](dfinity/candid@3ac7e9d) fix type annotation in parser ([dfinity/candid⁠#162](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/162))
* [`432c4289`](dfinity/candid@432c428) A Candid users’s guide ([dfinity/candid⁠#158](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/158))
* [`315cb991`](dfinity/candid@315cb99) Coq: MiniCandid ([dfinity/candid⁠#147](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/147))
* [`83fdff28`](dfinity/candid@83fdff2) Improve wording for type mismatches ([dfinity/candid⁠#167](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/167))
* [`3028f5ed`](dfinity/candid@3028f5e) Lg/candid rev pre split ([dfinity/candid⁠#169](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/169))
* [`6c8d4e39`](dfinity/candid@6c8d4e3) Lg/candid users guide ([dfinity/candid⁠#170](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/170))
* [`0c2205fc`](dfinity/candid@0c2205f) FIx typo toll>tool ([dfinity/candid⁠#172](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/172))
* [`63d9f6fd`](dfinity/candid@63d9f6f) Test suite: A test that invalid unicode in method names is rejected ([dfinity/candid⁠#174](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/174))
* [`dad82102`](dfinity/candid@dad8210) generate random candid values ([dfinity/candid⁠#166](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/166))
* [`2720d995`](dfinity/candid@2720d99) Release ([dfinity/candid⁠#176](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/176))
* [`9fbffdcc`](dfinity/candid@9fbffdc) Meta-Theory: Clarify transitive coherence ([dfinity/candid⁠#173](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/173))
* [`8acbbd47`](dfinity/candid@8acbbd4) Update README.md
* [`05ff9f82`](dfinity/candid@05ff9f8) Fix RUSTSEC-2020-0122 by upgrading logos which upgrades beef ([dfinity/candid⁠#179](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/179))
* [`b65c0859`](dfinity/candid@b65c085) Candid test suite: Method sorting test ([dfinity/candid⁠#177](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/177))
* [`8df6e6c0`](dfinity/candid@8df6e6c) bump ui
dfinity-bot added a commit that referenced this issue Feb 7, 2021
Branch: master
Commits: [dfinity/candid@25fb8470...0c988a9a](dfinity/candid@25fb847...0c988a9)

* [`ea2c72f5`](dfinity/candid@ea2c72f) support reference types ([dfinity/candid⁠#153](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/153))
* [`d48bc04c`](dfinity/candid@d48bc04) fix record_nesting_depth for native Rust types ([dfinity/candid⁠#155](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/155))
* [`e54d3e4a`](dfinity/candid@e54d3e4) support more Rust built-in types ([dfinity/candid⁠#156](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/156))
* [`3b3637e1`](dfinity/candid@3b3637e) release ([dfinity/candid⁠#157](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/157))
* [`98d73586`](dfinity/candid@98d7358) debug print for values ([dfinity/candid⁠#159](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/159))
* [`620ad802`](dfinity/candid@620ad80) fix debug print
* [`01d23d61`](dfinity/candid@01d23d6) Candid test suite: More tests related to references ([dfinity/candid⁠#160](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/160))
* [`c59c2fd1`](dfinity/candid@c59c2fd) release
* [`3ac7e9d3`](dfinity/candid@3ac7e9d) fix type annotation in parser ([dfinity/candid⁠#162](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/162))
* [`432c4289`](dfinity/candid@432c428) A Candid users’s guide ([dfinity/candid⁠#158](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/158))
* [`315cb991`](dfinity/candid@315cb99) Coq: MiniCandid ([dfinity/candid⁠#147](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/147))
* [`83fdff28`](dfinity/candid@83fdff2) Improve wording for type mismatches ([dfinity/candid⁠#167](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/167))
* [`3028f5ed`](dfinity/candid@3028f5e) Lg/candid rev pre split ([dfinity/candid⁠#169](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/169))
* [`6c8d4e39`](dfinity/candid@6c8d4e3) Lg/candid users guide ([dfinity/candid⁠#170](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/170))
* [`0c2205fc`](dfinity/candid@0c2205f) FIx typo toll>tool ([dfinity/candid⁠#172](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/172))
* [`63d9f6fd`](dfinity/candid@63d9f6f) Test suite: A test that invalid unicode in method names is rejected ([dfinity/candid⁠#174](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/174))
* [`dad82102`](dfinity/candid@dad8210) generate random candid values ([dfinity/candid⁠#166](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/166))
* [`2720d995`](dfinity/candid@2720d99) Release ([dfinity/candid⁠#176](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/176))
* [`9fbffdcc`](dfinity/candid@9fbffdc) Meta-Theory: Clarify transitive coherence ([dfinity/candid⁠#173](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/173))
* [`8acbbd47`](dfinity/candid@8acbbd4) Update README.md
* [`05ff9f82`](dfinity/candid@05ff9f8) Fix RUSTSEC-2020-0122 by upgrading logos which upgrades beef ([dfinity/candid⁠#179](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/179))
* [`b65c0859`](dfinity/candid@b65c085) Candid test suite: Method sorting test ([dfinity/candid⁠#177](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/177))
* [`8df6e6c0`](dfinity/candid@8df6e6c) bump ui
* [`1977fdb3`](dfinity/candid@1977fdb) Typescript binding for Candid ([dfinity/candid⁠#181](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/181))
* [`0c988a9a`](dfinity/candid@0c988a9) Lg/rust js type mapping ([dfinity/candid⁠#180](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/180))
dfinity-bot added a commit that referenced this issue Feb 9, 2021
Branch: master
Commits: [dfinity/candid@25fb8470...0c988a9a](dfinity/candid@25fb847...0c988a9)

* [`ea2c72f5`](dfinity/candid@ea2c72f) support reference types ([dfinity/candid⁠#153](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/153))
* [`d48bc04c`](dfinity/candid@d48bc04) fix record_nesting_depth for native Rust types ([dfinity/candid⁠#155](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/155))
* [`e54d3e4a`](dfinity/candid@e54d3e4) support more Rust built-in types ([dfinity/candid⁠#156](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/156))
* [`3b3637e1`](dfinity/candid@3b3637e) release ([dfinity/candid⁠#157](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/157))
* [`98d73586`](dfinity/candid@98d7358) debug print for values ([dfinity/candid⁠#159](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/159))
* [`620ad802`](dfinity/candid@620ad80) fix debug print
* [`01d23d61`](dfinity/candid@01d23d6) Candid test suite: More tests related to references ([dfinity/candid⁠#160](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/160))
* [`c59c2fd1`](dfinity/candid@c59c2fd) release
* [`3ac7e9d3`](dfinity/candid@3ac7e9d) fix type annotation in parser ([dfinity/candid⁠#162](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/162))
* [`432c4289`](dfinity/candid@432c428) A Candid users’s guide ([dfinity/candid⁠#158](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/158))
* [`315cb991`](dfinity/candid@315cb99) Coq: MiniCandid ([dfinity/candid⁠#147](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/147))
* [`83fdff28`](dfinity/candid@83fdff2) Improve wording for type mismatches ([dfinity/candid⁠#167](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/167))
* [`3028f5ed`](dfinity/candid@3028f5e) Lg/candid rev pre split ([dfinity/candid⁠#169](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/169))
* [`6c8d4e39`](dfinity/candid@6c8d4e3) Lg/candid users guide ([dfinity/candid⁠#170](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/170))
* [`0c2205fc`](dfinity/candid@0c2205f) FIx typo toll>tool ([dfinity/candid⁠#172](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/172))
* [`63d9f6fd`](dfinity/candid@63d9f6f) Test suite: A test that invalid unicode in method names is rejected ([dfinity/candid⁠#174](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/174))
* [`dad82102`](dfinity/candid@dad8210) generate random candid values ([dfinity/candid⁠#166](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/166))
* [`2720d995`](dfinity/candid@2720d99) Release ([dfinity/candid⁠#176](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/176))
* [`9fbffdcc`](dfinity/candid@9fbffdc) Meta-Theory: Clarify transitive coherence ([dfinity/candid⁠#173](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/173))
* [`8acbbd47`](dfinity/candid@8acbbd4) Update README.md
* [`05ff9f82`](dfinity/candid@05ff9f8) Fix RUSTSEC-2020-0122 by upgrading logos which upgrades beef ([dfinity/candid⁠#179](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/179))
* [`b65c0859`](dfinity/candid@b65c085) Candid test suite: Method sorting test ([dfinity/candid⁠#177](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/177))
* [`8df6e6c0`](dfinity/candid@8df6e6c) bump ui
* [`1977fdb3`](dfinity/candid@1977fdb) Typescript binding for Candid ([dfinity/candid⁠#181](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/181))
* [`0c988a9a`](dfinity/candid@0c988a9) Lg/rust js type mapping ([dfinity/candid⁠#180](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/180))
dfinity-bot added a commit that referenced this issue Feb 11, 2021
Branch: master
Commits: [dfinity/candid@25fb8470...b80a2389](dfinity/candid@25fb847...b80a238)

* [`ea2c72f5`](dfinity/candid@ea2c72f) support reference types ([dfinity/candid⁠#153](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/153))
* [`d48bc04c`](dfinity/candid@d48bc04) fix record_nesting_depth for native Rust types ([dfinity/candid⁠#155](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/155))
* [`e54d3e4a`](dfinity/candid@e54d3e4) support more Rust built-in types ([dfinity/candid⁠#156](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/156))
* [`3b3637e1`](dfinity/candid@3b3637e) release ([dfinity/candid⁠#157](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/157))
* [`98d73586`](dfinity/candid@98d7358) debug print for values ([dfinity/candid⁠#159](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/159))
* [`620ad802`](dfinity/candid@620ad80) fix debug print
* [`01d23d61`](dfinity/candid@01d23d6) Candid test suite: More tests related to references ([dfinity/candid⁠#160](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/160))
* [`c59c2fd1`](dfinity/candid@c59c2fd) release
* [`3ac7e9d3`](dfinity/candid@3ac7e9d) fix type annotation in parser ([dfinity/candid⁠#162](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/162))
* [`432c4289`](dfinity/candid@432c428) A Candid users’s guide ([dfinity/candid⁠#158](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/158))
* [`315cb991`](dfinity/candid@315cb99) Coq: MiniCandid ([dfinity/candid⁠#147](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/147))
* [`83fdff28`](dfinity/candid@83fdff2) Improve wording for type mismatches ([dfinity/candid⁠#167](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/167))
* [`3028f5ed`](dfinity/candid@3028f5e) Lg/candid rev pre split ([dfinity/candid⁠#169](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/169))
* [`6c8d4e39`](dfinity/candid@6c8d4e3) Lg/candid users guide ([dfinity/candid⁠#170](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/170))
* [`0c2205fc`](dfinity/candid@0c2205f) FIx typo toll>tool ([dfinity/candid⁠#172](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/172))
* [`63d9f6fd`](dfinity/candid@63d9f6f) Test suite: A test that invalid unicode in method names is rejected ([dfinity/candid⁠#174](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/174))
* [`dad82102`](dfinity/candid@dad8210) generate random candid values ([dfinity/candid⁠#166](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/166))
* [`2720d995`](dfinity/candid@2720d99) Release ([dfinity/candid⁠#176](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/176))
* [`9fbffdcc`](dfinity/candid@9fbffdc) Meta-Theory: Clarify transitive coherence ([dfinity/candid⁠#173](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/173))
* [`8acbbd47`](dfinity/candid@8acbbd4) Update README.md
* [`05ff9f82`](dfinity/candid@05ff9f8) Fix RUSTSEC-2020-0122 by upgrading logos which upgrades beef ([dfinity/candid⁠#179](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/179))
* [`b65c0859`](dfinity/candid@b65c085) Candid test suite: Method sorting test ([dfinity/candid⁠#177](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/177))
* [`8df6e6c0`](dfinity/candid@8df6e6c) bump ui
* [`1977fdb3`](dfinity/candid@1977fdb) Typescript binding for Candid ([dfinity/candid⁠#181](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/181))
* [`0c988a9a`](dfinity/candid@0c988a9) Lg/rust js type mapping ([dfinity/candid⁠#180](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/180))
* [`b80a2389`](dfinity/candid@b80a238) Doc typo ([dfinity/candid⁠#182](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/182))
dfinity-bot added a commit that referenced this issue Feb 12, 2021
Branch: master
Commits: [dfinity/candid@25fb8470...6e35c0e2](dfinity/candid@25fb847...6e35c0e)

* [`ea2c72f5`](dfinity/candid@ea2c72f) support reference types ([dfinity/candid⁠#153](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/153))
* [`d48bc04c`](dfinity/candid@d48bc04) fix record_nesting_depth for native Rust types ([dfinity/candid⁠#155](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/155))
* [`e54d3e4a`](dfinity/candid@e54d3e4) support more Rust built-in types ([dfinity/candid⁠#156](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/156))
* [`3b3637e1`](dfinity/candid@3b3637e) release ([dfinity/candid⁠#157](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/157))
* [`98d73586`](dfinity/candid@98d7358) debug print for values ([dfinity/candid⁠#159](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/159))
* [`620ad802`](dfinity/candid@620ad80) fix debug print
* [`01d23d61`](dfinity/candid@01d23d6) Candid test suite: More tests related to references ([dfinity/candid⁠#160](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/160))
* [`c59c2fd1`](dfinity/candid@c59c2fd) release
* [`3ac7e9d3`](dfinity/candid@3ac7e9d) fix type annotation in parser ([dfinity/candid⁠#162](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/162))
* [`432c4289`](dfinity/candid@432c428) A Candid users’s guide ([dfinity/candid⁠#158](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/158))
* [`315cb991`](dfinity/candid@315cb99) Coq: MiniCandid ([dfinity/candid⁠#147](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/147))
* [`83fdff28`](dfinity/candid@83fdff2) Improve wording for type mismatches ([dfinity/candid⁠#167](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/167))
* [`3028f5ed`](dfinity/candid@3028f5e) Lg/candid rev pre split ([dfinity/candid⁠#169](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/169))
* [`6c8d4e39`](dfinity/candid@6c8d4e3) Lg/candid users guide ([dfinity/candid⁠#170](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/170))
* [`0c2205fc`](dfinity/candid@0c2205f) FIx typo toll>tool ([dfinity/candid⁠#172](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/172))
* [`63d9f6fd`](dfinity/candid@63d9f6f) Test suite: A test that invalid unicode in method names is rejected ([dfinity/candid⁠#174](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/174))
* [`dad82102`](dfinity/candid@dad8210) generate random candid values ([dfinity/candid⁠#166](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/166))
* [`2720d995`](dfinity/candid@2720d99) Release ([dfinity/candid⁠#176](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/176))
* [`9fbffdcc`](dfinity/candid@9fbffdc) Meta-Theory: Clarify transitive coherence ([dfinity/candid⁠#173](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/173))
* [`8acbbd47`](dfinity/candid@8acbbd4) Update README.md
* [`05ff9f82`](dfinity/candid@05ff9f8) Fix RUSTSEC-2020-0122 by upgrading logos which upgrades beef ([dfinity/candid⁠#179](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/179))
* [`b65c0859`](dfinity/candid@b65c085) Candid test suite: Method sorting test ([dfinity/candid⁠#177](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/177))
* [`8df6e6c0`](dfinity/candid@8df6e6c) bump ui
* [`1977fdb3`](dfinity/candid@1977fdb) Typescript binding for Candid ([dfinity/candid⁠#181](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/181))
* [`0c988a9a`](dfinity/candid@0c988a9) Lg/rust js type mapping ([dfinity/candid⁠#180](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/180))
* [`b80a2389`](dfinity/candid@b80a238) Doc typo ([dfinity/candid⁠#182](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/182))
* [`b4a73dea`](dfinity/candid@b4a73de) support more Rust types for serialization ([dfinity/candid⁠#185](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/185))
* [`14f50bc6`](dfinity/candid@14f50bc) fix typescript binding for references ([dfinity/candid⁠#184](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/184))
* [`6e35c0e2`](dfinity/candid@6e35c0e) Release ([dfinity/candid⁠#186](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/186))
dfinity-bot added a commit that referenced this issue Feb 13, 2021
Branch: master
Commits: [dfinity/candid@25fb8470...6e35c0e2](dfinity/candid@25fb847...6e35c0e)

* [`ea2c72f5`](dfinity/candid@ea2c72f) support reference types ([dfinity/candid⁠#153](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/153))
* [`d48bc04c`](dfinity/candid@d48bc04) fix record_nesting_depth for native Rust types ([dfinity/candid⁠#155](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/155))
* [`e54d3e4a`](dfinity/candid@e54d3e4) support more Rust built-in types ([dfinity/candid⁠#156](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/156))
* [`3b3637e1`](dfinity/candid@3b3637e) release ([dfinity/candid⁠#157](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/157))
* [`98d73586`](dfinity/candid@98d7358) debug print for values ([dfinity/candid⁠#159](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/159))
* [`620ad802`](dfinity/candid@620ad80) fix debug print
* [`01d23d61`](dfinity/candid@01d23d6) Candid test suite: More tests related to references ([dfinity/candid⁠#160](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/160))
* [`c59c2fd1`](dfinity/candid@c59c2fd) release
* [`3ac7e9d3`](dfinity/candid@3ac7e9d) fix type annotation in parser ([dfinity/candid⁠#162](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/162))
* [`432c4289`](dfinity/candid@432c428) A Candid users’s guide ([dfinity/candid⁠#158](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/158))
* [`315cb991`](dfinity/candid@315cb99) Coq: MiniCandid ([dfinity/candid⁠#147](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/147))
* [`83fdff28`](dfinity/candid@83fdff2) Improve wording for type mismatches ([dfinity/candid⁠#167](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/167))
* [`3028f5ed`](dfinity/candid@3028f5e) Lg/candid rev pre split ([dfinity/candid⁠#169](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/169))
* [`6c8d4e39`](dfinity/candid@6c8d4e3) Lg/candid users guide ([dfinity/candid⁠#170](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/170))
* [`0c2205fc`](dfinity/candid@0c2205f) FIx typo toll>tool ([dfinity/candid⁠#172](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/172))
* [`63d9f6fd`](dfinity/candid@63d9f6f) Test suite: A test that invalid unicode in method names is rejected ([dfinity/candid⁠#174](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/174))
* [`dad82102`](dfinity/candid@dad8210) generate random candid values ([dfinity/candid⁠#166](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/166))
* [`2720d995`](dfinity/candid@2720d99) Release ([dfinity/candid⁠#176](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/176))
* [`9fbffdcc`](dfinity/candid@9fbffdc) Meta-Theory: Clarify transitive coherence ([dfinity/candid⁠#173](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/173))
* [`8acbbd47`](dfinity/candid@8acbbd4) Update README.md
* [`05ff9f82`](dfinity/candid@05ff9f8) Fix RUSTSEC-2020-0122 by upgrading logos which upgrades beef ([dfinity/candid⁠#179](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/179))
* [`b65c0859`](dfinity/candid@b65c085) Candid test suite: Method sorting test ([dfinity/candid⁠#177](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/177))
* [`8df6e6c0`](dfinity/candid@8df6e6c) bump ui
* [`1977fdb3`](dfinity/candid@1977fdb) Typescript binding for Candid ([dfinity/candid⁠#181](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/181))
* [`0c988a9a`](dfinity/candid@0c988a9) Lg/rust js type mapping ([dfinity/candid⁠#180](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/180))
* [`b80a2389`](dfinity/candid@b80a238) Doc typo ([dfinity/candid⁠#182](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/182))
* [`b4a73dea`](dfinity/candid@b4a73de) support more Rust types for serialization ([dfinity/candid⁠#185](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/185))
* [`14f50bc6`](dfinity/candid@14f50bc) fix typescript binding for references ([dfinity/candid⁠#184](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/184))
* [`6e35c0e2`](dfinity/candid@6e35c0e) Release ([dfinity/candid⁠#186](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/186))
dfinity-bot added a commit that referenced this issue Feb 16, 2021
Branch: master
Commits: [dfinity/candid@25fb8470...6e35c0e2](dfinity/candid@25fb847...6e35c0e)

* [`ea2c72f5`](dfinity/candid@ea2c72f) support reference types ([dfinity/candid⁠#153](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/153))
* [`d48bc04c`](dfinity/candid@d48bc04) fix record_nesting_depth for native Rust types ([dfinity/candid⁠#155](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/155))
* [`e54d3e4a`](dfinity/candid@e54d3e4) support more Rust built-in types ([dfinity/candid⁠#156](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/156))
* [`3b3637e1`](dfinity/candid@3b3637e) release ([dfinity/candid⁠#157](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/157))
* [`98d73586`](dfinity/candid@98d7358) debug print for values ([dfinity/candid⁠#159](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/159))
* [`620ad802`](dfinity/candid@620ad80) fix debug print
* [`01d23d61`](dfinity/candid@01d23d6) Candid test suite: More tests related to references ([dfinity/candid⁠#160](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/160))
* [`c59c2fd1`](dfinity/candid@c59c2fd) release
* [`3ac7e9d3`](dfinity/candid@3ac7e9d) fix type annotation in parser ([dfinity/candid⁠#162](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/162))
* [`432c4289`](dfinity/candid@432c428) A Candid users’s guide ([dfinity/candid⁠#158](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/158))
* [`315cb991`](dfinity/candid@315cb99) Coq: MiniCandid ([dfinity/candid⁠#147](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/147))
* [`83fdff28`](dfinity/candid@83fdff2) Improve wording for type mismatches ([dfinity/candid⁠#167](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/167))
* [`3028f5ed`](dfinity/candid@3028f5e) Lg/candid rev pre split ([dfinity/candid⁠#169](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/169))
* [`6c8d4e39`](dfinity/candid@6c8d4e3) Lg/candid users guide ([dfinity/candid⁠#170](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/170))
* [`0c2205fc`](dfinity/candid@0c2205f) FIx typo toll>tool ([dfinity/candid⁠#172](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/172))
* [`63d9f6fd`](dfinity/candid@63d9f6f) Test suite: A test that invalid unicode in method names is rejected ([dfinity/candid⁠#174](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/174))
* [`dad82102`](dfinity/candid@dad8210) generate random candid values ([dfinity/candid⁠#166](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/166))
* [`2720d995`](dfinity/candid@2720d99) Release ([dfinity/candid⁠#176](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/176))
* [`9fbffdcc`](dfinity/candid@9fbffdc) Meta-Theory: Clarify transitive coherence ([dfinity/candid⁠#173](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/173))
* [`8acbbd47`](dfinity/candid@8acbbd4) Update README.md
* [`05ff9f82`](dfinity/candid@05ff9f8) Fix RUSTSEC-2020-0122 by upgrading logos which upgrades beef ([dfinity/candid⁠#179](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/179))
* [`b65c0859`](dfinity/candid@b65c085) Candid test suite: Method sorting test ([dfinity/candid⁠#177](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/177))
* [`8df6e6c0`](dfinity/candid@8df6e6c) bump ui
* [`1977fdb3`](dfinity/candid@1977fdb) Typescript binding for Candid ([dfinity/candid⁠#181](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/181))
* [`0c988a9a`](dfinity/candid@0c988a9) Lg/rust js type mapping ([dfinity/candid⁠#180](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/180))
* [`b80a2389`](dfinity/candid@b80a238) Doc typo ([dfinity/candid⁠#182](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/182))
* [`b4a73dea`](dfinity/candid@b4a73de) support more Rust types for serialization ([dfinity/candid⁠#185](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/185))
* [`14f50bc6`](dfinity/candid@14f50bc) fix typescript binding for references ([dfinity/candid⁠#184](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/184))
* [`6e35c0e2`](dfinity/candid@6e35c0e) Release ([dfinity/candid⁠#186](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/186))
dfinity-bot added a commit that referenced this issue Feb 17, 2021
Branch: master
Commits: [dfinity/candid@25fb8470...322ea4a2](dfinity/candid@25fb847...322ea4a)

* [`ea2c72f5`](dfinity/candid@ea2c72f) support reference types ([dfinity/candid⁠#153](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/153))
* [`d48bc04c`](dfinity/candid@d48bc04) fix record_nesting_depth for native Rust types ([dfinity/candid⁠#155](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/155))
* [`e54d3e4a`](dfinity/candid@e54d3e4) support more Rust built-in types ([dfinity/candid⁠#156](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/156))
* [`3b3637e1`](dfinity/candid@3b3637e) release ([dfinity/candid⁠#157](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/157))
* [`98d73586`](dfinity/candid@98d7358) debug print for values ([dfinity/candid⁠#159](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/159))
* [`620ad802`](dfinity/candid@620ad80) fix debug print
* [`01d23d61`](dfinity/candid@01d23d6) Candid test suite: More tests related to references ([dfinity/candid⁠#160](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/160))
* [`c59c2fd1`](dfinity/candid@c59c2fd) release
* [`3ac7e9d3`](dfinity/candid@3ac7e9d) fix type annotation in parser ([dfinity/candid⁠#162](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/162))
* [`432c4289`](dfinity/candid@432c428) A Candid users’s guide ([dfinity/candid⁠#158](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/158))
* [`315cb991`](dfinity/candid@315cb99) Coq: MiniCandid ([dfinity/candid⁠#147](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/147))
* [`83fdff28`](dfinity/candid@83fdff2) Improve wording for type mismatches ([dfinity/candid⁠#167](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/167))
* [`3028f5ed`](dfinity/candid@3028f5e) Lg/candid rev pre split ([dfinity/candid⁠#169](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/169))
* [`6c8d4e39`](dfinity/candid@6c8d4e3) Lg/candid users guide ([dfinity/candid⁠#170](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/170))
* [`0c2205fc`](dfinity/candid@0c2205f) FIx typo toll>tool ([dfinity/candid⁠#172](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/172))
* [`63d9f6fd`](dfinity/candid@63d9f6f) Test suite: A test that invalid unicode in method names is rejected ([dfinity/candid⁠#174](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/174))
* [`dad82102`](dfinity/candid@dad8210) generate random candid values ([dfinity/candid⁠#166](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/166))
* [`2720d995`](dfinity/candid@2720d99) Release ([dfinity/candid⁠#176](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/176))
* [`9fbffdcc`](dfinity/candid@9fbffdc) Meta-Theory: Clarify transitive coherence ([dfinity/candid⁠#173](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/173))
* [`8acbbd47`](dfinity/candid@8acbbd4) Update README.md
* [`05ff9f82`](dfinity/candid@05ff9f8) Fix RUSTSEC-2020-0122 by upgrading logos which upgrades beef ([dfinity/candid⁠#179](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/179))
* [`b65c0859`](dfinity/candid@b65c085) Candid test suite: Method sorting test ([dfinity/candid⁠#177](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/177))
* [`8df6e6c0`](dfinity/candid@8df6e6c) bump ui
* [`1977fdb3`](dfinity/candid@1977fdb) Typescript binding for Candid ([dfinity/candid⁠#181](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/181))
* [`0c988a9a`](dfinity/candid@0c988a9) Lg/rust js type mapping ([dfinity/candid⁠#180](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/180))
* [`b80a2389`](dfinity/candid@b80a238) Doc typo ([dfinity/candid⁠#182](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/182))
* [`b4a73dea`](dfinity/candid@b4a73de) support more Rust types for serialization ([dfinity/candid⁠#185](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/185))
* [`14f50bc6`](dfinity/candid@14f50bc) fix typescript binding for references ([dfinity/candid⁠#184](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/184))
* [`6e35c0e2`](dfinity/candid@6e35c0e) Release ([dfinity/candid⁠#186](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/186))
* [`05df9eb3`](dfinity/candid@05df9eb) Candid users guide: Linebreak example pretty printing ([dfinity/candid⁠#188](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity/candid/issues/188))
* [`322ea4a2`](dfinity/candid@322ea4a) [rust] Fix reserved subtyping
dfinity-bot added a commit that referenced this issue Apr 25, 2023
## Changelog for ic-hs:
Branch: master
Commits: [dfinity/ic-hs@1431d7b5...406decfa](dfinity/ic-hs@1431d7b...406decf)

* [`406decfa`](dfinity/ic-hs@406decf) use remote store builds ([dfinity/ic-hs⁠#162](https://togithub.com/dfinity/ic-hs/issues/162))
mergify bot pushed a commit that referenced this issue Apr 25, 2023
## Changelog for ic-hs:
Branch: master
Commits: [dfinity/ic-hs@1431d7b5...406decfa](dfinity/ic-hs@1431d7b...406decf)

* [`406decfa`](dfinity/ic-hs@406decf) use remote store builds ([dfinity/ic-hs⁠#162](https://togithub.com/dfinity/ic-hs/issues/162))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
duplicate This issue or pull request already exists
Projects
None yet
Development

No branches or pull requests

3 participants