Skip to content

Commit

Permalink
Preparing the release.
Browse files Browse the repository at this point in the history
  • Loading branch information
Drup committed Mar 8, 2019
1 parent 37cfdbe commit 0e27e0f
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 1.2

- Rename the library to Iter.
- Add `from_labeled_iter`.
- Use `raise_notrace` for internal exceptions.

## 1.1

- perf: use `Set.elements` to convert to list
Expand Down
1 change: 1 addition & 0 deletions dune-project
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
(lang dune 1.0)
(name iter)
4 changes: 2 additions & 2 deletions iter.opam
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: "1.2"
authors: ["Simon Cruanes" "Gabriel Radanne"]
maintainer: "[email protected]"
license: "BSD-2-clauses"
synopsis: "Simple abstract over `iter` functions, intended to iterate efficiently on collections while performing some transformations"
synopsis: "Simple abstraction over `iter` functions, intended to iterate efficiently on collections while performing some transformations"
build: [
["dune" "build" "@install" "-p" name "-j" jobs]
["dune" "build" "@doc" "-p" name] {with-doc}
Expand All @@ -24,6 +24,6 @@ homepage: "https://github.com/c-cube/iter/"
depopts: [
"base-bigarray"
]
doc: "https://c-cube.github.io/iter/"
doc: "https://c-cube.github.io/iter/doc/${version}"
bug-reports: "https://github.com/c-cube/iter/issues"
dev-repo: "git+https://github.com/c-cube/iter.git"
2 changes: 1 addition & 1 deletion src/Iter.mli
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ val from_iter : (('a -> unit) -> unit) -> 'a t

val from_labelled_iter : (f:('a -> unit) -> unit) -> 'a t
(** Build an iterator from a labelled iter function
@since NEXT_RELEASE *)
@since 1.2 *)

val from_fun : (unit -> 'a option) -> 'a t
(** Call the function repeatedly until it returns None. This
Expand Down
2 changes: 1 addition & 1 deletion src/IterLabels.mli
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ val from_iter : (('a -> unit) -> unit) -> 'a t

val from_labelled_iter : (f:('a -> unit) -> unit) -> 'a t
(** Build an iterator from a labelled iter function
@since NEXT_RELEASE *)
@since 1.2 *)

val from_fun : (unit -> 'a option) -> 'a t
(** Call the function repeatedly until it returns None. This
Expand Down

0 comments on commit 0e27e0f

Please sign in to comment.