From d76831a8c3187413c1f74b52fc2ad8341fb77b0b Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Wed, 3 Jan 2018 08:05:02 +0100 Subject: [PATCH 1/3] changelog --- CHANGELOG.adoc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index ee38ca6d..f7f90225 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -1,5 +1,9 @@ = Changelog +== 1.5.1 + +- re-export `Format` types and functions in `CCFormat` + == 1.5 - have `CCList.{get,insert,set}_at_idx` work with negative indices From a160ae36721af3c2dcbf6a91b43fcf3b09656c6f Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Thu, 4 Jan 2018 08:53:33 -0600 Subject: [PATCH 2/3] missing type aliases (see #173) --- src/core/CCFormat.mli | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/core/CCFormat.mli b/src/core/CCFormat.mli index a9f40d07..3af46e8d 100644 --- a/src/core/CCFormat.mli +++ b/src/core/CCFormat.mli @@ -8,6 +8,10 @@ type 'a sequence = ('a -> unit) -> unit include module type of Format + with type formatter = Format.formatter + and type formatter_out_functions = Format.formatter_out_functions + and type formatter_tag_functions = Format.formatter_tag_functions + type t = Format.formatter type 'a printer = t -> 'a -> unit From 53137a6183f3f4ed9a54f798d1ecc18d05c86e7d Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Thu, 4 Jan 2018 11:13:26 -0600 Subject: [PATCH 3/3] prepare for 1.5.2 --- _oasis | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_oasis b/_oasis index 6b9db690..fbf34b65 100644 --- a/_oasis +++ b/_oasis @@ -1,6 +1,6 @@ OASISFormat: 0.4 Name: containers -Version: 1.5 +Version: 1.5.2 Homepage: https://github.com/c-cube/ocaml-containers Authors: Simon Cruanes License: BSD-2-clause