Skip to content

Commit 0e27e0f

Browse files
committed
Preparing the release.
1 parent 37cfdbe commit 0e27e0f

File tree

5 files changed

+11
-4
lines changed

5 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
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

dune-project

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
(lang dune 1.0)
2+
(name iter)

iter.opam

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version: "1.2"
44
authors: ["Simon Cruanes" "Gabriel Radanne"]
55
maintainer: "[email protected]"
66
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"
88
build: [
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/"
2424
depopts: [
2525
"base-bigarray"
2626
]
27-
doc: "https://c-cube.github.io/iter/"
27+
doc: "https://c-cube.github.io/iter/doc/${version}"
2828
bug-reports: "https://github.com/c-cube/iter/issues"
2929
dev-repo: "git+https://github.com/c-cube/iter.git"

src/Iter.mli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ val from_iter : (('a -> unit) -> unit) -> 'a t
5353

5454
val 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

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

src/IterLabels.mli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ val from_iter : (('a -> unit) -> unit) -> 'a t
2929

3030
val 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

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

0 commit comments

Comments
 (0)