prepare for 1.1

This commit is contained in:
Simon Cruanes 2017-03-03 16:18:13 +01:00
parent 6df16975ca
commit d45b341232
5 changed files with 27 additions and 6 deletions

View file

@ -1,5 +1,26 @@
= Changelog = Changelog
== 1.1
**bugfixes**:
- fix bug in `CCGraph` (in DFS traversal)
- fix bug in `CCOpt.filter` (close #100)
**new features**:
- add `CCHeap.to_seq_sorted`
- add `CCHeap.to_list_sorted`
- add `CCIO.File.walk_l`
**cleanup and doc**:
- remove dead code
- new test for `CCPool`
- new test and small readme section on `CCParse`
- remove CCError from tutorial
- merge tutorial into readme, cleanup
== 1.0 == 1.0
See https://github.com/c-cube/ocaml-containers/issues/84 for an overview. See https://github.com/c-cube/ocaml-containers/issues/84 for an overview.

2
_oasis
View file

@ -1,6 +1,6 @@
OASISFormat: 0.4 OASISFormat: 0.4
Name: containers Name: containers
Version: 1.0 Version: 1.1
Homepage: https://github.com/c-cube/ocaml-containers Homepage: https://github.com/c-cube/ocaml-containers
Authors: Simon Cruanes Authors: Simon Cruanes
License: BSD-2-clause License: BSD-2-clause

View file

@ -138,7 +138,7 @@ module type S = sig
val to_list_sorted : t -> elt list val to_list_sorted : t -> elt list
(** Return the elements in increasing order (** Return the elements in increasing order
@since NEXT_RELEASE *) @since 1.1 *)
val add_list : t -> elt list -> t val add_list : t -> elt list -> t
(** Add the elements of the list to the heap. An element occurring several (** Add the elements of the list to the heap. An element occurring several
@ -157,7 +157,7 @@ module type S = sig
val to_seq_sorted : t -> elt sequence val to_seq_sorted : t -> elt sequence
(** Iterate on the elements, in increasing order (** Iterate on the elements, in increasing order
@since NEXT_RELEASE *) @since 1.1 *)
val add_klist : t -> elt klist -> t (** @since 0.16 *) val add_klist : t -> elt klist -> t (** @since 0.16 *)

View file

@ -75,7 +75,7 @@ module type S = sig
val to_list_sorted : t -> elt list val to_list_sorted : t -> elt list
(** Return the elements in increasing order (** Return the elements in increasing order
@since NEXT_RELEASE *) @since 1.1 *)
val add_list : t -> elt list -> t val add_list : t -> elt list -> t
(** Add the elements of the list to the heap. An element occurring several (** Add the elements of the list to the heap. An element occurring several
@ -94,7 +94,7 @@ module type S = sig
val to_seq_sorted : t -> elt sequence val to_seq_sorted : t -> elt sequence
(** Iterate on the elements, in increasing order (** Iterate on the elements, in increasing order
@since NEXT_RELEASE *) @since 1.1 *)
val add_klist : t -> elt klist -> t (** @since 0.16 *) val add_klist : t -> elt klist -> t (** @since 0.16 *)

View file

@ -205,7 +205,7 @@ module File : sig
val walk_l : t -> walk_item list val walk_l : t -> walk_item list
(** Same as {!walk} but returns a list (therefore it's eager and might (** Same as {!walk} but returns a list (therefore it's eager and might
take some time on large directories) take some time on large directories)
@since NEXT_RELEASE *) @since 1.1 *)
val show_walk_item : walk_item -> string val show_walk_item : walk_item -> string