Skip to content

Commit

Permalink
Update CHANGES.md and META for 0.17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yallop committed Feb 22, 2020
1 parent 1e1429f commit c83debb
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 10 deletions.
18 changes: 15 additions & 3 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,25 @@
## ctypes 0.17.0

* ocaml_bytes now corresponds to 'unsigned char *', not 'char *'
https://github.com/ocamllabs/ocaml-ctypes/pull/626

* Distinguish bytes and string in generated stub code
https://github.com/ocamllabs/ocaml-ctypes/pull/622

* Reflect "managed" status in the types of fat pointers
https://github.com/ocamllabs/ocaml-ctypes/pull/619
(This is an internal-only change.)

## ctypes 0.16.0

* Add `Foreign.dynamic_funptr`, a variant of `Foreign.funptr` with
explicit life cycle management.
explicit life cycle management.
https://github.com/ocamllabs/ocaml-ctypes/pull/595

* fix ctypes-foreign depexts to work with opam 2
* fix ctypes-foreign depexts to work with opam 2
https://github.com/ocamllabs/ocaml-ctypes/pull/617

* Build with -strict-sequence
* Build with -strict-sequence
https://github.com/ocamllabs/ocaml-ctypes/pull/613

Thanks to Andreas Hauptmann (@fdopen), Andrew Ray (@andrewray), Anil
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.16.0"
version = "0.17.0"
description = "Combinators for binding to C libraries without writing any C."
requires = "bigarray bytes integers"
archive(byte) = "ctypes.cma"
Expand All @@ -9,7 +9,7 @@ archive(native, plugin) = "ctypes.cmxs"
exists_if = "ctypes.cma"

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

package "stubs" (
version = "0.16.0"
version = "0.17.0"
description = "Stub generation from C types"
requires = "ctypes str"
archive(byte) = "cstubs.cma"
Expand All @@ -32,13 +32,13 @@ package "stubs" (
)

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

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

package "threaded" (
version = "0.16.0"
version = "0.17.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 @@ -60,7 +60,7 @@ package "foreign" (
)

package "unthreaded" (
version = "0.16.0"
version = "0.17.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 c83debb

Please sign in to comment.