Skip to content

Releases: membraneframework/unifex

v1.2.0

11 Mar 19:57
0edf54e
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.1.2...v1.2.0

v1.1.2

11 Mar 19:35
6a9ae37
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.1.1...v1.1.2

v1.1.1

05 Feb 17:05
4522fac
Compare
Choose a tag to compare

What's Changed

  • Improve unifex supported types tables by @Janix4000 in #103
  • Unifex cannot properly generate functions returning nil by @bartkrak in #107

New Contributors

Full Changelog: v1.1.0...v1.1.1

v1.1.0

16 Dec 19:11
f3038a6
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.0.1...v1.1.0

v1.0.1

06 Jul 12:12
db7326a
Compare
Choose a tag to compare

What's Changed

  • Fix struct parsing when using lists by @Qizot in #95

Full Changelog: v1.0.0...v1.0.1

v1.0.0

19 May 13:29
7e797ba
Compare
Choose a tag to compare

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

24 Jan 14:36
441d318
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.7.2...v0.7.3

v0.7.2

22 Dec 14:46
29781d2
Compare
Choose a tag to compare

What's Changed

  • Revert changes from v0.7.1 (causing segfault)

Full Changelog: v0.7.1...v0.7.2

v0.7.0

02 Sep 09:57
Compare
Choose a tag to compare
  • implement thread API for C node (#81)
  • change UnifexPayload API (also #81)

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);

v0.6.0

17 Aug 13:00
905c439
Compare
Choose a tag to compare
  • docs enhancements and fix for Enum support #77
  • helper functions for manipulating UnifexEnv and UnifexPid for C node (#79)