From 6d4f128bafe8900e254daec7212378e92507fded Mon Sep 17 00:00:00 2001 From: Jeremy Yallop Date: Fri, 16 Dec 2016 11:11:58 +0000 Subject: [PATCH 1/2] Update CHANGES.md for 0.11.2. --- CHANGES.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index 40f6d5cf..fda0584e 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,10 @@ +## ctypes 0.11.2 + +### Bug fixes + +* Fix truncation in UInt64.of_int; remove other uses of `Val_int`/`Int_val` + https://github.com/ocamllabs/ocaml-ctypes/pull/492 + ## ctypes 0.11.1 ### Bug fixes From e5c3fe3b3b3d2e3192b15bf0d616e15e84b30813 Mon Sep 17 00:00:00 2001 From: Jeremy Yallop Date: Fri, 16 Dec 2016 11:12:19 +0000 Subject: [PATCH 2/2] Update META for 0.11.2. --- META | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/META b/META index 0c199021..e93b4c16 100644 --- a/META +++ b/META @@ -1,4 +1,4 @@ -version = "0.11.1" +version = "0.11.2" description = "Combinators for binding to C libraries without writing any C." requires = "unix bigarray str bytes" archive(byte) = "ctypes.cma" @@ -9,7 +9,7 @@ archive(native, plugin) = "ctypes.cmxs" exists_if = "ctypes.cma" package "top" ( - version = "0.11.1" + version = "0.11.2" description = "Toplevel printers for C types" requires = "ctypes" archive(byte) = "ctypes-top.cma" @@ -20,7 +20,7 @@ package "top" ( ) package "stubs" ( - version = "0.11.1" + version = "0.11.2" description = "Stub generation from C types" requires = "ctypes" archive(byte) = "cstubs.cma" @@ -32,13 +32,13 @@ package "stubs" ( ) package "foreign" ( - version = "0.11.1" + version = "0.11.2" description = "Dynamic linking of C functions" requires(-mt) = "ctypes.foreign.unthreaded" requires(mt) = "ctypes.foreign.threaded" package "base" ( - version = "0.11.1" + version = "0.11.2" description = "Dynamic linking of C functions (base package)" requires = "ctypes" archive(byte) = "ctypes-foreign-base.cma" @@ -49,7 +49,7 @@ package "foreign" ( ) package "threaded" ( - version = "0.11.1" + version = "0.11.2" description = "Dynamic linking of C functions (for use in threaded programs)" requires = "threads ctypes ctypes.foreign.base" archive(byte) = "ctypes-foreign-threaded.cma" @@ -60,7 +60,7 @@ package "foreign" ( ) package "unthreaded" ( - version = "0.11.1" + version = "0.11.2" description = "Dynamic linking of C functions (for use in unthreaded programs)" requires = "ctypes ctypes.foreign.base" archive(byte) = "ctypes-foreign-unthreaded.cma"