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

Looping Typechecker #155

Closed
crusso opened this issue Feb 7, 2019 · 18 comments
Closed

Looping Typechecker #155

crusso opened this issue Feb 7, 2019 · 18 comments
Assignees
Labels
duplicate This issue or pull request already exists

Comments

@crusso
Copy link
Contributor

crusso commented Feb 7, 2019

This example cause the type-checker to diverge (observed while implementing a library for join patterns).

// NB: a non-regular type (accepted)
type foo<A> = { next: <B>() -> foo<(A,B)> };

// bad causes the type-checker to loop
func bad<A>():foo<A> {
  new {
     next<B>():foo<(A,B)> { next<B>(); }
  };
};
@crusso crusso self-assigned this Feb 7, 2019
@crusso
Copy link
Contributor Author

crusso commented Feb 7, 2019

@andreas, I'll investigate but if you expect this to diverge, let me know why....

@matthewhammer
Copy link
Contributor

I didn't expect this to be legal AS: To what function is the invocation next<B>(); referring?

@matthewhammer
Copy link
Contributor

(Is it a recursive call to the next function being defined on that line?)

@nomeata
Copy link
Collaborator

nomeata commented Feb 7, 2019

(Is it a recursive call to the next function being defined on that line?)

Sure, why not?

@rossberg rossberg added the duplicate This issue or pull request already exists label Feb 7, 2019
@rossberg
Copy link
Contributor

rossberg commented Feb 7, 2019

Yes, this is currently expected, because we don't check uniform type recursion yet.

Closing this as a duplicate of #76.

@rossberg rossberg closed this as completed Feb 7, 2019
@rossberg
Copy link
Contributor

rossberg commented Feb 7, 2019

(That is to say, the type definition in your program is gonna be illegal. Non-uniform structural type recursion is undecidable.)

@crusso
Copy link
Contributor Author

crusso commented Feb 7, 2019

Well, I'd actually love this to work for my join patterns example (i.e. it would be nice if this were legal)

It turns out I can fix the bug in this instance by make Type.rel_typ a little less eager in unfolding definition, but I don't know if it's correct (apart from passing all the tests):

| Con (con1, ts1), Con (con2, ts2) ->
   (con1 = con2 && rel_list eq_typ env rel eq ts1 ts2) || (* crusso: check me first, before unfolding *)
   (match Con.Env.find con1 env, Con.Env.find con2 env with
   | Def (tbs, t), _ -> (* TBR this may fail to terminate *)
     rel_typ env rel eq (open_ ts1 t) t2
   | _, Def (tbs, t) -> (* TBR this may fail to terminate *)
     rel_typ env rel eq t1 (open_ ts2 t)
(*
   | _ when con1 = con2 ->
     rel_list eq_typ env rel eq ts1 ts2
*)
   | Abs (tbs, t), _ when rel != eq ->
     rel_typ env rel eq (open_ ts1 t) t2
   | _ ->
     false
   )

@crusso crusso reopened this Feb 7, 2019
@rossberg
Copy link
Contributor

rossberg commented Feb 7, 2019

Well, a hack like that would break basic properties of the relation (like transitivity). So that doesn't seem viable.

@crusso
Copy link
Contributor Author

crusso commented Feb 7, 2019

But isn't this just checking reflexivity? Indeed, I'm just doing the third (original, now commented) check early (before doing the unfoldings) although I guess I should also check con1 (con2) are in the environment.

@crusso
Copy link
Contributor Author

crusso commented Feb 7, 2019

Or am I missing something about the way the relations are (statefully) grown?

@rossberg
Copy link
Contributor

rossberg commented Feb 7, 2019

A type name is supposed to be equivalent to its definition. Consequently, when you have X = T, then X <: X must imply T[U/A] <: T[V/A], otherwise transitivity would not hold. When you can only derive the former but not the latter then it's toast.

That change also doesn't answer the question how to prevent non-termination in the other cases. The standard solution is banning irregular types altogether. It would be awesome if we could find something more permissive, but my attempt of a literature search came up empty.

@rossberg
Copy link
Contributor

rossberg commented Feb 7, 2019

[Redoing it with parens, since GitHub eats the angle brackets.]

A type name is supposed to be equivalent to its definition. Consequently, when you have X(A) = T, then X(U) <: X(V) must imply T[U/A] <: T[V/A], otherwise transitivity would not hold. When you can only derive the former but not the latter then it's toast.

@crusso
Copy link
Contributor Author

crusso commented Feb 7, 2019

Ok, that make sense, but here, I'm only concluding X(U) =/<: X(V) when U=V, in which case, shouldn't T[U/A]=/<:T[V/A] hold ?

@rossberg
Copy link
Contributor

rossberg commented Feb 8, 2019

It's probably still breaking other properties, like covariance. If A only appears positively, like in foo, and U <: V, then foo(U) <: foo(V) should hold.

But even if you forget about subtyping entirely, you already get into trouble. Consider this example:

type T<A> = {x : <B> () -> U<(A, B)>};
type U<A> = {x : <B> () -> T<(A, B)>};

Clearly, T and U have identical structure, but how would you successfully check T<Nat> = U<Nat>?

@crusso
Copy link
Contributor Author

crusso commented Feb 11, 2019

I think in either case the algorithm would be behave as previously, since the modification still does the unfolding if necessary (supporting co-variance in the first case) and diverging (as before) in the second.

Or is there something else wrong?

@rossberg
Copy link
Contributor

Sure, but how do you envision ruling out non-termination while making these cases work? Because if they were rejected although your case is allowed, you'd have an inconsistent type system.

@crusso
Copy link
Contributor Author

crusso commented Feb 11, 2019

For the case above, I imagine we could actually add a set of equated type constructors and add to the set before unfolding both sides. But I expect this still won't guarantee termination when they are only equal after n-unfoldings, for some n.

@nomeata
Copy link
Collaborator

nomeata commented Feb 14, 2019

@nomeata nomeata closed this as completed Feb 14, 2019
dfinity-bot added a commit that referenced this issue Aug 1, 2020
## Changelog for motoko-base:
Branch: next-moc
Commits: [dfinity/motoko-base@0375b45d...c27c5255](dfinity/motoko-base@0375b45...c27c525)

* [`ffd149cc`](dfinity/motoko-base@ffd149c) bumps dfx version
* [`8d673459`](dfinity/motoko-base@8d67345) Add TrieSet functions to convert to/from arrays ([dfinity-lab/motoko-base⁠#150](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/150))
* [`9bcc23fb`](dfinity/motoko-base@9bcc23f) Documentation for Array module ([dfinity-lab/motoko-base⁠#138](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/138))
* [`239385d0`](dfinity/motoko-base@239385d) Document Deque module ([dfinity-lab/motoko-base⁠#132](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/132))
* [`381e73a2`](dfinity/motoko-base@381e73a) Adds a script to visualize module dependencies ([dfinity-lab/motoko-base⁠#153](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/153))
* [`3cb61d18`](dfinity/motoko-base@3cb61d1) Fixes module documentation headers ([dfinity-lab/motoko-base⁠#154](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/154))
* [`75b2fb55`](dfinity/motoko-base@75b2fb5) Fix Set.fromArray ([dfinity-lab/motoko-base⁠#155](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/155))
mergify bot pushed a commit that referenced this issue Aug 1, 2020
## Changelog for motoko-base:
Branch: next-moc
Commits: [dfinity/motoko-base@0375b45d...c27c5255](dfinity/motoko-base@0375b45...c27c525)

* [`ffd149cc`](dfinity/motoko-base@ffd149c) bumps dfx version
* [`8d673459`](dfinity/motoko-base@8d67345) Add TrieSet functions to convert to/from arrays ([dfinity-lab/motoko-base⁠#150](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/150))
* [`9bcc23fb`](dfinity/motoko-base@9bcc23f) Documentation for Array module ([dfinity-lab/motoko-base⁠#138](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/138))
* [`239385d0`](dfinity/motoko-base@239385d) Document Deque module ([dfinity-lab/motoko-base⁠#132](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/132))
* [`381e73a2`](dfinity/motoko-base@381e73a) Adds a script to visualize module dependencies ([dfinity-lab/motoko-base⁠#153](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/153))
* [`3cb61d18`](dfinity/motoko-base@3cb61d1) Fixes module documentation headers ([dfinity-lab/motoko-base⁠#154](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/154))
* [`75b2fb55`](dfinity/motoko-base@75b2fb5) Fix Set.fromArray ([dfinity-lab/motoko-base⁠#155](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/155))
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 Mar 24, 2023
## Changelog for ic-hs:
Branch: master
Commits: [dfinity/ic-hs@ca6aca90...934ea79e](dfinity/ic-hs@ca6aca9...934ea79)

* [`f207e269`](dfinity/ic-hs@f207e26) add test to start a stopping canister ([dfinity/ic-hs⁠#153](https://togithub.com/dfinity/ic-hs/issues/153))
* [`3d61cfcf`](dfinity/ic-hs@3d61cfc) implement CRP-1951 in ic-hs ([dfinity/ic-hs⁠#154](https://togithub.com/dfinity/ic-hs/issues/154))
* [`ec9adff7`](dfinity/ic-hs@ec9adff) allow multiple request_status paths for a single request ID in read_state ([dfinity/ic-hs⁠#156](https://togithub.com/dfinity/ic-hs/issues/156))
* [`934ea79e`](dfinity/ic-hs@934ea79) check the number of delegations in sender_delegation ([dfinity/ic-hs⁠#155](https://togithub.com/dfinity/ic-hs/issues/155))
mergify bot pushed a commit that referenced this issue Mar 24, 2023
## Changelog for ic-hs:
Branch: master
Commits: [dfinity/ic-hs@ca6aca90...934ea79e](dfinity/ic-hs@ca6aca9...934ea79)

* [`f207e269`](dfinity/ic-hs@f207e26) add test to start a stopping canister ([dfinity/ic-hs⁠#153](https://togithub.com/dfinity/ic-hs/issues/153))
* [`3d61cfcf`](dfinity/ic-hs@3d61cfc) implement CRP-1951 in ic-hs ([dfinity/ic-hs⁠#154](https://togithub.com/dfinity/ic-hs/issues/154))
* [`ec9adff7`](dfinity/ic-hs@ec9adff) allow multiple request_status paths for a single request ID in read_state ([dfinity/ic-hs⁠#156](https://togithub.com/dfinity/ic-hs/issues/156))
* [`934ea79e`](dfinity/ic-hs@934ea79) check the number of delegations in sender_delegation ([dfinity/ic-hs⁠#155](https://togithub.com/dfinity/ic-hs/issues/155))
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

4 participants