* Add Builder::with_using_namespaces (#688).
 * Ignore PhantomPinned (#695).
 * Simplify Pin<T> to T (#697).
 * Update --pretty=expanded to -Zunpretty=expanded (#706).
This commit is contained in:
Emilio Cobos Álvarez 2021-07-29 14:25:58 +02:00
parent 34299aef56
commit 41506d5aeb
No known key found for this signature in database
GPG Key ID: E1152D0994E4BF8A
3 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,10 @@
## 0.20.0
* Add Builder::with_using_namespaces. (#688)
* Ignore PhantomPinned. (#695)
* Simplify Pin<T> to T. (#697)
* Update --pretty=expanded to -Zunpretty=expanded. (#706)
## 0.19.0 ## 0.19.0
* Simplify types in generics (#663) * Simplify types in generics (#663)

2
Cargo.lock generated
View File

@ -36,7 +36,7 @@ checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
[[package]] [[package]]
name = "cbindgen" name = "cbindgen"
version = "0.19.0" version = "0.20.0"
dependencies = [ dependencies = [
"clap", "clap",
"heck", "heck",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "cbindgen" name = "cbindgen"
version = "0.19.0" version = "0.20.0"
authors = [ authors = [
"Emilio Cobos Álvarez <emilio@crisal.io>", "Emilio Cobos Álvarez <emilio@crisal.io>",
"Jeff Muizelaar <jmuizelaar@mozilla.com>", "Jeff Muizelaar <jmuizelaar@mozilla.com>",