Skip to content

Commit

Permalink
Merge pull request #427 from yallop/prepare-0.8.0
Browse files Browse the repository at this point in the history
Prepare the 0.8.0 release
  • Loading branch information
yallop authored Aug 15, 2016
2 parents 675c35d + b37271e commit 89c0dff
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 7 deletions.
23 changes: 23 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
## ctypes 0.8.0

### Features

* Use unboxed types for `uint8_t` and `uint16_t`
https://github.com/ocamllabs/ocaml-ctypes/issues/413

* Reset `errno` in Lwt jobs before invoking job function
https://github.com/ocamllabs/ocaml-ctypes/issues/426

* Add a `~thread_registration` argument to `funptr` to support registering C threads with the OCaml runtime.
https://github.com/ocamllabs/ocaml-ctypes/issues/420

### Bug fixes

* Use `-opaque` for module interfaces whose `cmx` files are not installed.
https://github.com/ocamllabs/ocaml-ctypes/issues/423

* Install `cstubs` `cmx` files.
https://github.com/ocamllabs/ocaml-ctypes/issues/424

Thanks to David Sheets (@dsheets) and Demi Obenour (@DemiMarie) for contributions to this release.

## ctypes 0.7.0

### Features
Expand Down
14 changes: 7 additions & 7 deletions META
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "0.7.0"
version = "0.8.0"
description = "Combinators for binding to C libraries without writing any C."
requires = "unix bigarray str bytes"
archive(byte) = "ctypes.cma"
Expand All @@ -8,7 +8,7 @@ archive(native, plugin) = "ctypes.cmxs"
exists_if = "ctypes.cma"

package "top" (
version = "0.7.0"
version = "0.8.0"
description = "Toplevel printers for C types"
requires = "ctypes"
archive(byte) = "ctypes-top.cma"
Expand All @@ -19,7 +19,7 @@ package "top" (
)

package "stubs" (
version = "0.7.0"
version = "0.8.0"
description = "Stub generation from C types"
requires = "ctypes"
archive(byte) = "cstubs.cma"
Expand All @@ -31,13 +31,13 @@ package "stubs" (
)

package "foreign" (
version = "0.7.0"
version = "0.8.0"
description = "Dynamic linking of C functions"
requires(-mt) = "ctypes.foreign.unthreaded"
requires(mt) = "ctypes.foreign.threaded"

package "base" (
version = "0.7.0"
version = "0.8.0"
description = "Dynamic linking of C functions (base package)"
requires = "ctypes"
archive(byte) = "ctypes-foreign-base.cma"
Expand All @@ -48,7 +48,7 @@ package "foreign" (
)

package "threaded" (
version = "0.7.0"
version = "0.8.0"
description = "Dynamic linking of C functions (for use in threaded programs)"
requires = "threads ctypes ctypes.foreign.base"
archive(byte) = "ctypes-foreign-threaded.cma"
Expand All @@ -59,7 +59,7 @@ package "foreign" (
)

package "unthreaded" (
version = "0.7.0"
version = "0.8.0"
description = "Dynamic linking of C functions (for use in unthreaded programs)"
requires = "ctypes ctypes.foreign.base"
archive(byte) = "ctypes-foreign-unthreaded.cma"
Expand Down

0 comments on commit 89c0dff

Please sign in to comment.