Skip to content

Commit

Permalink
Fix compat with spawn v0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremie Dimino committed Apr 26, 2018
1 parent 91c3640 commit 078a2db
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ you might want to have a look at Base's
and Core\_kernel's
[changelog](https://github.com/janestreet/core_kernel/blob/master/CHANGES.md).

## v0.11.1

- Fix compatibility with spawn v0.12.0

## v0.11

- Fix a segfault in `Time`. (fixes #102)
Expand Down
4 changes: 2 additions & 2 deletions core.opam
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
opam-version: "1.2"
version: "v0.11.0"
version: "v0.11.1"
maintainer: "[email protected]"
authors: ["Jane Street Group, LLC <[email protected]>"]
homepage: "https://github.com/janestreet/core"
Expand All @@ -16,7 +16,7 @@ depends: [
"ppx_assert" {>= "v0.11" & < "v0.12"}
"ppx_jane" {>= "v0.11" & < "v0.12"}
"sexplib" {>= "v0.11" & < "v0.12"}
"spawn" {>= "v0.11" & < "v0.12"}
"spawn" {>= "v0.12"}
"stdio" {>= "v0.11" & < "v0.12"}
"base-threads"
"jbuilder" {build & >= "1.0+beta18.1"}
Expand Down
2 changes: 1 addition & 1 deletion src/core_unix.ml
Original file line number Diff line number Diff line change
Expand Up @@ -1580,7 +1580,7 @@ let create_process_internal
?cwd:(Option.map working_dir ~f:(fun x -> Spawn.Working_dir.Path x))
~prog
~argv
~env
~env:(Spawn.Env.of_list env)
~stdin:in_read
~stdout:out_write
~stderr:err_write
Expand Down

0 comments on commit 078a2db

Please sign in to comment.