Releases: membraneframework/unifex
Releases · membraneframework/unifex
v1.2.0
v1.1.2
v1.1.1
v1.1.0
What's Changed
- add tests for c++ by @mat-hek in #97
- Fix warns occuring in C++ tests by @FelonEkonom in #98
- MS-267 Documentation for NIFs by @Janix4000 in #100
- Format generated code only when clang-format is available by @mickel8 in #101
- Fix version by setting it to 1.1.0 by @mickel8 in #102
New Contributors
- @Janix4000 made their first contribution in #100
Full Changelog: v1.0.1...v1.1.0
v1.0.1
v1.0.0
Unifex 1.0 released!
There are no major changes, only type specs & docs improvements and alignment to the credo linter. Unifex now relies on Bundlex v1.0.
Full Changelog: v0.7.3...v1.0.0
v0.7.3
What's Changed
- Fix building with FreeBSD. by @vanillahsu in #88
New Contributors
- @vanillahsu made their first contribution in #88
Full Changelog: v0.7.2...v0.7.3
v0.7.2
v0.7.0
As a result function unifex_paylaod_release_ptr
was deleted. Instead, user is responsible for allocating and freeing memory of UnifexPayload
struct on its own. The following listings illustrates proper usage of UnifexPayload
UnifexPayload payload;
unifex_payload_alloc(env, UNIFEX_PAYLOAD_BINARY, len, &payload);
// do something
unifex_payload_release(&payload);
or
UnifexPayload *payload = (UnifexPayload *)unifex_alloc(sizeof(UnifexPayload));
unifex_payload_alloc(env, UNIFEX_PAYLOAD_BINARY, len, payload);
// do something
unifex_payload_release(payload);
unifex_free(payload);