This commit is contained in:
Emilio Cobos Álvarez 2022-04-19 11:29:52 +02:00
parent 5b418d968c
commit 8604b2c0b7
No known key found for this signature in database
GPG Key ID: E1152D0994E4BF8A
3 changed files with 12 additions and 2 deletions

10
CHANGES
View File

@ -1,3 +1,13 @@
## 0.22.0
* Support rename rule for union body members (#751).
* constant: Add support for associated constant expressions (#752).
* Fix regression in CamelCase rename rule (should be lowerCamelCase) (#750).
* enumeration: simplify standard types in variants (#749).
* Avoid generating and writing bindings when called recursively (#747).
* Cython: Omit per-variant tags in unions generated for Rust enums (#748).
* Update various dependencies.
## 0.21.0
* Update MSRV to 1.54.0

2
Cargo.lock generated
View File

@ -27,7 +27,7 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
[[package]]
name = "cbindgen"
version = "0.21.0"
version = "0.22.0"
dependencies = [
"clap",
"heck",

View File

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