Skip to content

Commit 99dba20

Browse files
committed
prepare for 3.16
1 parent f934db1 commit 99dba20

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

CHANGELOG.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
1-
# Changelog
21

3-
## main
2+
## 3.16
3+
4+
5+
- breaking: Renamed predicate parameter of `take_while`, `rtake_while` from `p` to `f`, aligining it with pre-existing `drop_while`.
6+
7+
- feat: add `containers.leb128` library
8+
- feat: add `CCFun.with_return`
9+
- Added functions to the `Char` module to check common character properties.
10+
- feat: add `CCVector.findi`
11+
12+
13+
- fix: compat with OCaml 5.4
14+
- fix: oob(!!) in CCHash.bytes
415

516
## 3.15
617

src/core/CCFun.mli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ let find_array arr x =
9292
-1
9393
]}
9494
95-
@since NEXT_RELEASE *)
95+
@since 3.15 *)
9696

9797
(** {2 Infix}
9898

src/core/CCVector.mli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ val find : ('a -> bool) -> ('a, _) t -> 'a option
222222

223223
val findi : ('a -> bool) -> ('a, _) t -> (int * 'a) option
224224
(** Find an element and its index that satisfies the predicate.
225-
@since NEXT_RELEASE *)
225+
@since 3.15 *)
226226

227227
val find_exn : ('a -> bool) -> ('a, _) t -> 'a
228228
(** Find an element that satisfies the predicate, or

0 commit comments

Comments
 (0)