Skip to content

Commit d410860

Browse files
committed
prepare for 1.7
1 parent 37a1605 commit d410860

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11

2+
# 1.7
3+
4+
- add let operators in Infix
5+
- require OCaml >= 4.08
6+
- improve docs about random iterators
7+
- fix: `IO.write_lines` should produce an empty file for an empty iter
8+
29
# 1.6
310

411
- use dune 2.0

iter.opam

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
opam-version: "2.0"
22
name: "iter"
3-
version: "1.6"
3+
version: "1.7"
44
authors: ["Simon Cruanes" "Gabriel Radanne"]
55
maintainer: "[email protected]"
66
license: "BSD-2-clause"

src/Iter.mli

+4-4
Original file line numberDiff line numberDiff line change
@@ -797,19 +797,19 @@ module Infix : sig
797797

798798
val ( let+ ) : 'a t -> ('a -> 'b) -> 'b t
799799
(** Alias for {!map}
800-
@since NEXT_RELEASE *)
800+
@since 1.7 *)
801801

802802
val ( and+ ) : 'a t -> 'b t -> ('a * 'b) t
803803
(** Alias for {!product}
804-
@since NEXT_RELEASE *)
804+
@since 1.7 *)
805805

806806
val ( let* ) : 'a t -> ('a -> 'b t) -> 'b t
807807
(** Alias for {!flat_map}
808-
@since NEXT_RELEASE *)
808+
@since 1.7 *)
809809

810810
val ( and* ) : 'a t -> 'b t -> ('a * 'b) t
811811
(** Alias for {!product}
812-
@since NEXT_RELEASE *)
812+
@since 1.7 *)
813813
end
814814

815815
include module type of Infix

0 commit comments

Comments
 (0)