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 1
1
# Changelog
2
2
3
+ ## 1.2
4
+
5
+ - Rename the library to Iter.
6
+ - Add ` from_labeled_iter ` .
7
+ - Use ` raise_notrace ` for internal exceptions.
8
+
3
9
## 1.1
4
10
5
11
- perf: use ` Set.elements ` to convert to list
Original file line number Diff line number Diff line change 1
1
(lang dune 1 .0)
2
+ (name iter)
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ version: "1.2"
4
4
authors: ["Simon Cruanes" "Gabriel Radanne"]
5
5
6
6
license: "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"
8
8
build: [
9
9
["dune" "build" "@install" "-p" name "-j" jobs]
10
10
["dune" "build" "@doc" "-p" name] {with-doc}
@@ -24,6 +24,6 @@ homepage: "https://github.com/c-cube/iter/"
24
24
depopts: [
25
25
"base-bigarray"
26
26
]
27
- doc: "https://c-cube.github.io/iter/"
27
+ doc: "https://c-cube.github.io/iter/doc/${version} "
28
28
bug-reports: "https://github.com/c-cube/iter/issues"
29
29
dev-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
53
53
54
54
val from_labelled_iter : (f :('a -> unit ) -> unit ) -> 'a t
55
55
(* * Build an iterator from a labelled iter function
56
- @since NEXT_RELEASE *)
56
+ @since 1.2 *)
57
57
58
58
val from_fun : (unit -> 'a option ) -> 'a t
59
59
(* * 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
29
29
30
30
val from_labelled_iter : (f :('a -> unit ) -> unit ) -> 'a t
31
31
(* * Build an iterator from a labelled iter function
32
- @since NEXT_RELEASE *)
32
+ @since 1.2 *)
33
33
34
34
val from_fun : (unit -> 'a option ) -> 'a t
35
35
(* * Call the function repeatedly until it returns None. This
You can’t perform that action at this time.
0 commit comments