7e8cf037de
- Update to 0.16.0 * Remove artificial restriction on lifetime parameters on enums * Add an option for converting usize/isize into size_t/ptrdiff_t. * Allow controlling the cargo profile used for expansion. * Support wider range of expressions in enum discriminants * Support generation of Cython bindings * Fixed some issues with style=tag and recursive structs * Default C style to Both (as specified in docs) * Fix resolution of path dependencies from certain modules. * Support inlined definitions for tuple variants with a single field in C OBS-URL: https://build.opensuse.org/request/show/862545 OBS-URL: https://build.opensuse.org/package/show/devel:languages:rust/rust-cbindgen?expand=0&rev=27
156 lines
6.4 KiB
Plaintext
156 lines
6.4 KiB
Plaintext
-------------------------------------------------------------------
|
|
Tue Jan 12 08:25:59 UTC 2021 - Martin Sirringhaus <martin.sirringhaus@suse.com>
|
|
|
|
- Update to 0.16.0
|
|
* Remove artificial restriction on lifetime parameters on enums
|
|
* Add an option for converting usize/isize into size_t/ptrdiff_t.
|
|
* Allow controlling the cargo profile used for expansion.
|
|
* Support wider range of expressions in enum discriminants
|
|
* Support generation of Cython bindings
|
|
* Fixed some issues with style=tag and recursive structs
|
|
* Default C style to Both (as specified in docs)
|
|
* Fix resolution of path dependencies from certain modules.
|
|
* Support inlined definitions for tuple variants with a single field in C
|
|
|
|
-------------------------------------------------------------------
|
|
Tue Oct 13 08:18:32 UTC 2020 - Martin Sirringhaus <martin.sirringhaus@suse.com>
|
|
|
|
- update to 0.15.0
|
|
* Allow customizing mangling of generic parameters in C
|
|
* Box<T> simplifies to T* in C
|
|
* ManuallyDrop<T> and MaubeUninit<T> simplify to T in C, and are opaque in C++
|
|
* C++ supports a derive-ostream annotation to derive serialization
|
|
of structs, unions and enums
|
|
* Large character constants have been fixed on Windows
|
|
* Constants are now generated for typedefs, etc
|
|
* The `sort_by` configuration option has been made to work for constants
|
|
* Default sort order is source order now (sort_by = "None"), and can
|
|
be changed by the above option
|
|
|
|
- update to 0.14.6
|
|
* Fixed the builds with older versions of rustc.
|
|
|
|
- update to 0.14.5
|
|
* Add support to specify line ending style
|
|
* Add cbindgen:ptrs-as-arrays annotation to allow making function
|
|
arguments C/C++ arrays.
|
|
|
|
- update to 0.14.4
|
|
* Allow to override the mangling separator
|
|
* cbindgen now handles better having ZSTs in template parameters, and
|
|
default template parameters.
|
|
* Support for annotating nonnull pointers
|
|
* Fixed bitflags that overflow a signed integer
|
|
* Support for wildcard argument names
|
|
* Support for the never return type, with configurable annotation
|
|
* Properly reject arrays as function arguments
|
|
|
|
-------------------------------------------------------------------
|
|
Thu Jul 23 14:26:02 UTC 2020 - Wolfgang Rosenauer <wr@rosenauer.org>
|
|
|
|
- update to 0.14.3
|
|
* Introduce cbindgen:ignore comment annotation, to allow ignoring items or modules.
|
|
* Support for casts in constant expressions.
|
|
* Make a non-fatal error a warning message.
|
|
* Add a --metadata option to the CLI, to allow passing pre-computed cargo metadata.
|
|
0.14.2
|
|
* Fixed minimal dependency versions.
|
|
* Add an option to write pragma once.
|
|
* Fix submodule scanning for implicit Rust 2018 modules.
|
|
* Fix dependency parsing / scanning to handle target-specific versions.
|
|
* Use heck for case conversion.
|
|
* Add support for verbatim content after includes.
|
|
* Allow to add attributes to most generated functions.
|
|
|
|
-------------------------------------------------------------------
|
|
Wed May 27 07:39:14 UTC 2020 - Wolfgang Rosenauer <wr@rosenauer.org>
|
|
|
|
- Update to version 0.14.1
|
|
0.14.1
|
|
* Handle mangling pointers.
|
|
* Unconditionally generate a return statement in partialeq implementations.
|
|
0.14.0
|
|
* Minor tweak at how [export.exclude] is handled to allow excluding
|
|
generic instantiations in C mode.
|
|
* Documented cpp_compat option.
|
|
* Fixed a panic when parsing associated constants for a built-in type.
|
|
0.13.2
|
|
* Constants now have suitable documentation.
|
|
* Fixed some C warnings by emitting void when there are no arguments.
|
|
* Avoids reading cargo.toml when not needed, which can cause panics
|
|
in workspace situations.
|
|
* Only write `default` cases if the switch is not exhaustive.
|
|
* Some warnings have been refined.
|
|
* Code generation for static arrays has been fixed.
|
|
* Opt-in support for constexpr in constants.
|
|
* Fix C code generation and some warnings when extremely large
|
|
constants are used.
|
|
* Proper escaping of enum variants and fields.
|
|
* Added support for RefCell (as an opaque type) and Cell.
|
|
- required for Firefox >= 77.0
|
|
|
|
-------------------------------------------------------------------
|
|
Mon Mar 30 20:12:18 UTC 2020 - Wolfgang Rosenauer <wr@rosenauer.org>
|
|
|
|
- Update to version 0.13.1
|
|
* Support `#[cfg]` on individual enum variants
|
|
- required for Firefox >= 75
|
|
- remove more irrelevant build artefacts
|
|
|
|
-------------------------------------------------------------------
|
|
Sat Mar 7 09:05:08 UTC 2020 - Wolfgang Rosenauer <wr@rosenauer.org>
|
|
|
|
- Update to version 0.13.0
|
|
* https://docs.rs/crate/cbindgen/0.13.0/source/CHANGES
|
|
- required for Firefox >= 74
|
|
|
|
-------------------------------------------------------------------
|
|
Sun Feb 9 07:54:07 UTC 2020 - Wolfgang Rosenauer <wr@rosenauer.org>
|
|
|
|
- Update to version 0.12.0
|
|
* https://docs.rs/crate/cbindgen/0.12.0/source/CHANGES
|
|
- required for Firefox >= 73
|
|
|
|
-------------------------------------------------------------------
|
|
Fri Oct 18 20:27:55 UTC 2019 - Wolfgang Rosenauer <wr@rosenauer.org>
|
|
|
|
- Update to version 0.9.1
|
|
* Various improvements to comment output.
|
|
* Fixed expand when ran from build.rs.
|
|
* More debugging output for expansion.
|
|
* New option to add a default private constructor in C++ tagged enums.
|
|
* Syn and related dependencies updated to 1.0.
|
|
|
|
-------------------------------------------------------------------
|
|
Thu Aug 8 20:44:33 UTC 2019 - Luke Jones <luke@ljones.dev>
|
|
|
|
- Update to version 0.9.0
|
|
* Support to generate C headers with C++ compatibility
|
|
* Fix include guard generation when no_includes is set
|
|
* Fix crate parsing order so that types from the binding crate
|
|
are preferred in presence of conflicting names
|
|
* Add extra_bindings option to generate bindings for dependencies
|
|
* Clap dependency is optional now so it's feasible to avoid
|
|
building it if cbindgen is used as a library
|
|
|
|
-------------------------------------------------------------------
|
|
Tue May 14 11:57:41 UTC 2019 - Wolfgang Rosenauer <wr@rosenauer.org>
|
|
|
|
- update to version 0.8.7
|
|
* there is no upstream changelog provided
|
|
|
|
-------------------------------------------------------------------
|
|
Sun Mar 17 13:43:36 UTC 2019 - Wolfgang Rosenauer <wr@rosenauer.org>
|
|
|
|
- update to version 0.6.8 to satisfy Firefox 66.0 build requirements
|
|
|
|
-------------------------------------------------------------------
|
|
Mon Nov 19 15:00:09 UTC 2018 - astieger@suse.com
|
|
|
|
- use a source URL
|
|
|
|
-------------------------------------------------------------------
|
|
Wed Nov 14 00:34:16 UTC 2018 - Luke Jones <jones_ld@protonmail.com>
|
|
|
|
- Initial packaging - boo#1115645
|