Skip to content

Commit

Permalink
Update CHANGES and META for 0.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yallop committed Nov 12, 2020
1 parent da48a7f commit 15c225e
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 4 deletions.
35 changes: 35 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,38 @@
## ctypes 0.18.0

* Remove the `Unix` dependency by using `bigarray-compat`
https://github.com/ocamllabs/ocaml-ctypes/pull/660

* Remove the threaded/unthreaded split in ctypes-foreign
https://github.com/ocamllabs/ocaml-ctypes/pull/654

* Eliminate some `const` warnings in generated code
https://github.com/ocamllabs/ocaml-ctypes/pull/646
https://github.com/ocamllabs/ocaml-ctypes/pull/638

* Speed-up `CArray.make` with initial value
https://github.com/ocamllabs/ocaml-ctypes/pull/644

* Fix complex allocation size
https://github.com/ocamllabs/ocaml-ctypes/pull/642

* Report names of missing symbols also under windows
https://github.com/ocamllabs/ocaml-ctypes/pull/641

* Remove a level of boxing from struct and union values
https://github.com/ocamllabs/ocaml-ctypes/pull/640

* Fix a markup issue in the `funptr` docstring
https://github.com/ocamllabs/ocaml-ctypes/pull/633

* Move conf-pkg-config dependency to ctypes-foreign
https://github.com/ocamllabs/ocaml-ctypes/pull/631

Thanks to Andreas Hauptmann (@fdopen), Anil Madhavapeddy (@avsm),
Anton Bachin (@aantron), Calascibetta Romain (@dinosaure), Sora
Morimoto (@smorimoto) and and Stéphane Glondu (@glondu) for
contributions to this release.

## ctypes 0.17.1

* Hide the managed component in pointer values
Expand Down
8 changes: 4 additions & 4 deletions META
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "0.17.1"
version = "0.18.0"
description = "Combinators for binding to C libraries without writing any C."
requires = "bigarray-compat 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.17.1"
version = "0.18.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.17.1"
version = "0.18.0"
description = "Stub generation from C types"
requires = "ctypes str"
archive(byte) = "cstubs.cma"
Expand All @@ -32,7 +32,7 @@ package "stubs" (
)

package "foreign" (
version = "0.17.1"
version = "0.18.0"
description = "Dynamic linking of C functions"
requires = "threads ctypes"
archive(byte) = "ctypes-foreign.cma"
Expand Down

0 comments on commit 15c225e

Please sign in to comment.