Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare the 0.6.2 release #401

Merged
merged 2 commits into from
Jun 8, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -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
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.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"
Expand All @@ -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"
Expand All @@ -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"
Expand All @@ -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"
Expand All @@ -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"
Expand All @@ -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"
Expand Down