diff options
author | Lars Kanis <lars@greiz-reinsdorf.de> | 2020-12-18 23:33:14 +0100 |
---|---|---|
committer | Lars Kanis <lars@greiz-reinsdorf.de> | 2020-12-18 23:33:14 +0100 |
commit | 0d8e5815716eeeb8fad11205646dfedd8bf23f03 (patch) | |
tree | 66811bb09062a26eaf5400dda2491b9132b05d41 | |
parent | b69745e694f41cfab212ea50fb635b1a259c94b2 (diff) | |
download | ffi-0d8e5815716eeeb8fad11205646dfedd8bf23f03.tar.gz |
Add Changelog entry for ffi-1.14.01.14.0
-rw-r--r-- | CHANGELOG.md | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index f78b870..0f962bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,28 @@ +1.14.0 / 2020-12-18 +------------------- + +Added: +* Add types.conf for x86_64-msys, x86_64-haiku, aarch64-openbsd and aarch64-darwin (alias arm64-darwin) +* Add method AbstractMemory#size_limit? . #829 +* Add new extconf option --enable-libffi-alloc which is enabled per default on Apple M1 (arm64-darwin). + +Changed: +* Do NULL pointer check only when array length > 0 . #305 +* Raise an error on an unknown order argument. #830 +* Change FFI::Pointer#write_string to terminate with a NUL byte like other string methods. #805 +* Update bundled libffi to latest master. + +Removed: +* Remove win32/stdint.h and stdbool.h because of copyright issue. #693 + +Fixed: +* Fix possible UTF-8 load error in loader script interpretation. #792 +* Fix segfault on non-array argument to #write_array_of_* +* Fix memory leak in MethodHandle . #815 +* Fix possible segfault in combination with fiddle or other libffi using gems . #835 +* Fix possibility to use ffi ruby gem with JRuby-9.3 . #763 + + 1.13.1 / 2020-06-09 ------------------- |