Skip to content

Commit

Permalink
Fix compatibility 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 b43cfeb commit 211aa25
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# v0.11.1

- Fix compatibility with spawn v0.12
2 changes: 1 addition & 1 deletion process-lib/src/env.ml
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ let spawn t ~prog ~args =
in
let pid =
Spawn.spawn ()
~env
~env:(Spawn.Env.of_list env)
~cwd
~prog:real_prog
~argv:(prog :: args)
Expand Down
2 changes: 1 addition & 1 deletion shexp.opam
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ build: [
depends: [
"base" {>= "v0.11" & < "v0.12"}
"posixat" {>= "v0.11" & < "v0.12"}
"spawn" {>= "v0.11" & < "v0.12"}
"spawn" {>= "v0.12"}
"base-threads"
"jbuilder" {build & >= "1.0+beta18.1"}
]
Expand Down

0 comments on commit 211aa25

Please sign in to comment.