File tree Expand file tree Collapse file tree 5 files changed +11
-4
lines changed Expand file tree Collapse file tree 5 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 1.2
4+
5+ - Rename the library to Iter.
6+ - Add ` from_labeled_iter ` .
7+ - Use ` raise_notrace ` for internal exceptions.
8+
39## 1.1
410
511- perf: use ` Set.elements ` to convert to list
Original file line number Diff line number Diff line change 11(lang dune 1 .0)
2+ (name iter)
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ version: "1.2"
44authors: ["Simon Cruanes" "Gabriel Radanne"]
55maintainer: "simon.cruanes.2007@m4x.org"
66license: "BSD-2-clauses"
7- synopsis: "Simple abstract over `iter` functions, intended to iterate efficiently on collections while performing some transformations"
7+ synopsis: "Simple abstraction over `iter` functions, intended to iterate efficiently on collections while performing some transformations"
88build: [
99 ["dune" "build" "@install" "-p" name "-j" jobs]
1010 ["dune" "build" "@doc" "-p" name] {with-doc}
@@ -24,6 +24,6 @@ homepage: "https://github.com/c-cube/iter/"
2424depopts: [
2525 "base-bigarray"
2626]
27- doc: "https://c-cube.github.io/iter/"
27+ doc: "https://c-cube.github.io/iter/doc/${version} "
2828bug-reports: "https://github.com/c-cube/iter/issues"
2929dev-repo: "git+https://github.com/c-cube/iter.git"
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ val from_iter : (('a -> unit) -> unit) -> 'a t
5353
5454val from_labelled_iter : (f :('a -> unit ) -> unit ) -> 'a t
5555(* * Build an iterator from a labelled iter function
56- @since NEXT_RELEASE *)
56+ @since 1.2 *)
5757
5858val from_fun : (unit -> 'a option ) -> 'a t
5959(* * Call the function repeatedly until it returns None. This
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ val from_iter : (('a -> unit) -> unit) -> 'a t
2929
3030val from_labelled_iter : (f :('a -> unit ) -> unit ) -> 'a t
3131(* * Build an iterator from a labelled iter function
32- @since NEXT_RELEASE *)
32+ @since 1.2 *)
3333
3434val from_fun : (unit -> 'a option ) -> 'a t
3535(* * Call the function repeatedly until it returns None. This
You can’t perform that action at this time.
0 commit comments