From 39df015463f2797256dfb12440ed8f6c2dfd59cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antoine=20Min=C3=A9?= Date: Wed, 3 Mar 2021 10:00:00 +0100 Subject: [PATCH] Preparation for release 1.12 --- Changes | 8 ++++++++ META | 4 ++-- z.mli | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/Changes b/Changes index e38601e..a7f17cd 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,11 @@ +Release 1.12 (2021-03-03) +- PR #79: fast path in OCaml (instead of assembly language) [Xavier Leroy] +- PR #94: remove source preprocessing and simplify configuration [Xavier Leroy] +- PR #93: fix parallel build [Guillaume Melquiond] +- PR #92: fix benchmark for subtraction [Guillaume Melquiond] +- require OCaml 4.04 or later [Xavier Leroy] +- add CI testing on macOS [Xavier Leroy] + Release 1.11 (2020-11-09) - Fixes #72, #75, #78: multiple fixes for of_string, support for underscores [hhugo] - Fix #74: fix Q.to_float for denormal numbers [pascal-cuoq] diff --git a/META b/META index 65adb2a..1b2b5af 100644 --- a/META +++ b/META @@ -1,11 +1,11 @@ description = "Arbitrary precision integers" requires = "" -version = "1.11" +version = "1.12" archive(byte) = "zarith.cma" archive(native) = "zarith.cmxa" package "top" ( - version = "1.11" + version = "1.12" description = "ZArith toplevel support" requires = "zarith" archive(byte) = "zarith_top.cma" diff --git a/z.mli b/z.mli index 0e4a046..2d155c5 100644 --- a/z.mli +++ b/z.mli @@ -712,7 +712,7 @@ end (** {1 Miscellaneous} *) val version: string -(** Library version (this file refers to version [@VERSION]). *) +(** Library version. *) (**/**)