Release v0.13.2
This commit is contained in:
parent
fc577f2a28
commit
17d7aad7d0
13
CHANGES
13
CHANGES
@ -1,3 +1,16 @@
|
||||
## 0.13.2
|
||||
|
||||
* Constants now have suitable documentation. (#471)
|
||||
* Fixed some C warnings by emitting void when there are no arguments. (#470)
|
||||
* Avoids reading cargo.toml when not needed, which can cause panics in workspace situations.
|
||||
* Only write `default` cases if the switch is not exhaustive. (#475)
|
||||
* Some warnings have been refined. (#477)
|
||||
* Code generation for static arrays has been fixed. (#479)
|
||||
* Opt-in support for constexpr in constants. (#481)
|
||||
* Fix C code generation and some warnings when extremely large constants are used. (#490)
|
||||
* Proper escaping of enum variants and fields. (#483)
|
||||
* Added support for RefCell (as an opaque type) and Cell. (#489)
|
||||
|
||||
## 0.13.1
|
||||
|
||||
* Support `#[cfg]` on individual enum variants. (#469)
|
||||
|
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -32,7 +32,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "cbindgen"
|
||||
version = "0.13.1"
|
||||
version = "0.13.2"
|
||||
dependencies = [
|
||||
"clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "cbindgen"
|
||||
version = "0.13.1"
|
||||
version = "0.13.2"
|
||||
authors = ["Jeff Muizelaar <jmuizelaar@mozilla.com>",
|
||||
"Kartikaya Gupta <kats@mozilla.com>",
|
||||
"Ryan Hunt <rhunt@eqrion.net>"]
|
||||
|
Loading…
x
Reference in New Issue
Block a user