From 21ca21f7d1e4d22133558cb3c4014885fd2887c1 Mon Sep 17 00:00:00 2001 From: Jeremy Yallop Date: Wed, 8 Jun 2016 16:50:18 +0100 Subject: [PATCH 1/2] Update CHANGES.md for 0.6.2 --- CHANGES.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index 72d6f3c5..c5272c90 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,15 @@ +## ctypes 0.6.2 + +### Bug fixes + +* Fix for argument quoting in the Windows build after new cross compilation support + https://github.com/ocamllabs/ocaml-ctypes/pull/399 + +* Improve Lwt jobs support for functions with many or no arguments + https://github.com/ocamllabs/ocaml-ctypes/pull/400 + +Thanks to Andreas Hauptmann (@fdopen) for contributing to this release. + ## ctypes 0.6.1 ### Bug fixes From 7ad4a2aa27e750f6256c328b70400e00ab27426b Mon Sep 17 00:00:00 2001 From: Jeremy Yallop Date: Wed, 8 Jun 2016 16:50:57 +0100 Subject: [PATCH 2/2] Bump META version. --- META | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/META b/META index e2dcf0f3..48bf1ce4 100644 --- a/META +++ b/META @@ -1,4 +1,4 @@ -version = "0.6.1" +version = "0.6.2" description = "Combinators for binding to C libraries without writing any C." requires = "unix bigarray str bytes" archive(byte) = "ctypes.cma" @@ -8,7 +8,7 @@ archive(native, plugin) = "ctypes.cmxs" exists_if = "ctypes.cma" package "top" ( - version = "0.6.1" + version = "0.6.2" description = "Toplevel printers for C types" requires = "ctypes" archive(byte) = "ctypes-top.cma" @@ -19,7 +19,7 @@ package "top" ( ) package "stubs" ( - version = "0.6.1" + version = "0.6.2" description = "Stub generation from C types" requires = "ctypes" archive(byte) = "cstubs.cma" @@ -31,13 +31,13 @@ package "stubs" ( ) package "foreign" ( - version = "0.6.1" + version = "0.6.2" description = "Dynamic linking of C functions" requires(-mt) = "ctypes.foreign.unthreaded" requires(mt) = "ctypes.foreign.threaded" package "base" ( - version = "0.6.1" + version = "0.6.2" description = "Dynamic linking of C functions (base package)" requires = "ctypes" archive(byte) = "ctypes-foreign-base.cma" @@ -48,7 +48,7 @@ package "foreign" ( ) package "threaded" ( - version = "0.6.1" + version = "0.6.2" description = "Dynamic linking of C functions (for use in threaded programs)" requires = "threads ctypes ctypes.foreign.base" archive(byte) = "ctypes-foreign-threaded.cma" @@ -59,7 +59,7 @@ package "foreign" ( ) package "unthreaded" ( - version = "0.6.1" + version = "0.6.2" description = "Dynamic linking of C functions (for use in unthreaded programs)" requires = "ctypes ctypes.foreign.base" archive(byte) = "ctypes-foreign-unthreaded.cma"