Skip to content

Commit 1ad6d8f

Browse files
Merge pull request #955 from ocsigen/prepare-for-5.6.0-release
Prepare for 5.6.0 release
2 parents 7355895 + 1fe6778 commit 1ad6d8f

File tree

6 files changed

+14
-7
lines changed

6 files changed

+14
-7
lines changed

CHANGES

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
===== dev =====
22

3+
===== 5.6.0 =====
4+
35
====== Installability ======
46

57
* Lwt is now compatible with OCaml 5.00. Lwt is now incompatible with OCaml 4.02. (#925, #923, Kate Deplaix, Patrick Ferris)
@@ -10,7 +12,8 @@
1012

1113
* In the Lwt_io module, add `?cloexec:bool` optional arguments to functions that create file descriptors (`pipe`). The `?cloexec` argument is simply forwarded to the wrapped Lwt_unix function. (#872, #911, Antonin Décimo)
1214
* Add Lwt_result.error, Lwt_result.iter, and Lwt_result.iter_error for consistency with Stdlib. (#927, Antonin Décimo)
13-
* Lwt_result.bind_error (#943, Boning Dong)
15+
* Lwt_result.bind_error. (#943, Boning Dong)
16+
* Add ?cloexec parameter to Lwt_io.pipe. (#911, Antonin Décimo)
1417

1518
====== Misc ======
1619

@@ -20,6 +23,9 @@
2023
* Fix documentation of infix choose. (#952, Reynir Björnsson)
2124
* Only define OCAML_NAME_SPACE for OCaml<5.0.0. (#929, Antonin Décimo)
2225
* Replace mentions of Pervasives with Stdlib in the doc. (#954, Antonin Décimo)
26+
* Improve deprecation message for auto_yield. (#908, Seb Mondet)
27+
* Fix mirage tutorial link. (#936, Tuomas Lukka)
28+
* Fix issues in opam file. (#937, Andreas Hauptmann)
2329

2430
====== Fixes ======
2531

@@ -30,6 +36,8 @@
3036
* Fix macOS/arm64 tests which have a 16k page. (#932, Kate Deplaix)
3137
* Fix Lwt_unix.closedir incorrectly checking the return value of closedir(3). (#942, Antonin Décimo)
3238
* Fix custom_operations struct not fully initialized after OCaml 4.08. (Antonin Décimo, #918)
39+
* Fix missing include directive. (#940, Antonin Décimo)
40+
* Fix missing initialisation in Unix stub. (#941, Antonin Décimo)
3341

3442
====== Deprecations ======
3543

lwt.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ opam-version: "2.0"
22

33
synopsis: "Promises and event-driven I/O"
44

5-
version: "5.5.0"
5+
version: "5.6.0"
66
license: "MIT"
77
homepage: "https://github.com/ocsigen/lwt"
88
doc: "https://ocsigen.org/lwt"

lwt_domain.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ opam-version: "2.0"
22

33
synopsis: "Helpers for using Domainslib with Lwt"
44

5-
version: "0.1.0"
5+
version: "0.2.0"
66
license: "MIT"
77
homepage: "https://github.com/ocsigen/lwt"
88
doc: "https://ocsigen.org/lwt/dev/api/Lwt_domain"

lwt_ppx.opam

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ opam-version: "2.0"
22

33
synopsis: "PPX syntax for Lwt, providing something similar to async/await from JavaScript"
44

5-
version: "2.0.3"
5+
version: "2.1.0"
66
license: "MIT"
77
homepage: "https://github.com/ocsigen/lwt"
88
doc: "https://ocsigen.org/lwt/dev/api/Ppx_lwt"
@@ -21,7 +21,6 @@ depends: [
2121
"lwt"
2222
"ocaml" {>= "4.08"}
2323
"ppxlib" {>= "0.16.0"}
24-
"ocaml" {>= "4.08"}
2524
]
2625

2726
build: [

lwt_ppx_let.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ opam-version: "2.0"
22

33
synopsis: "Dummy package context for ppx_let tests"
44

5-
version: "5.5.0"
5+
version: "5.6.0"
66
license: "MIT"
77
homepage: "https://github.com/ocsigen/lwt"
88
doc: "https://ocsigen.org/lwt"

lwt_react.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ opam-version: "2.0"
22

33
synopsis: "Helpers for using React with Lwt"
44

5-
version: "1.1.5"
5+
version: "1.2.0"
66
license: "MIT"
77
homepage: "https://github.com/ocsigen/lwt"
88
doc: "https://ocsigen.org/lwt/dev/api/Lwt_react"

0 commit comments

Comments
 (0)