-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cstruct 6.0.0 compatibility #34
Conversation
CI is green, anyone happy to review & release //cc @mirage/core |
@@ -7,7 +7,7 @@ homepage: "https://github.com/mirage/mirage-channel" | |||
doc: "http://mirage.github.io/mirage-channel/" | |||
bug-reports: "https://github.com/mirage/mirage-channel/issues" | |||
depends: [ | |||
"ocaml" {>= "4.06.0"} | |||
"ocaml" {>= "4.07.0"} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What syntax error do you have (just to keep a record if we see the same message in another context)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/src: (run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build"))
File "test/test_channel.ml", line 73, characters 4-8:
Error: Syntax error
"/bin/bash" "-c"
"opam exec -- dune build @install @check @runtest && rm -rf _build" failed with exit status 1
The contents of test_channel.ml
:
type flow = unit
type error = |
type write_error = Mirage_flow.write_error
I suspect it is the type error = |
.
LGTM |
CHANGES: * Add an optional size limit to `read_line` (mirage/mirage-channel#32 @djs55) * Redefine type error as private type of polymorphic variant (mirage/mirage-channel#32 @dinosaure) * Restore compatibility with alcotest 1.4.0 (mirage/mirage-channel#33 @craigfe) * Update to cstruct 6.0.0 API, remove use of deprecated Cstruct.len (mirage/mirage-channel#34 @hannesm)
CHANGES: * Add an optional size limit to `read_line` (mirage/mirage-channel#32 @djs55) * Redefine type error as private type of polymorphic variant (mirage/mirage-channel#32 @dinosaure) * Restore compatibility with alcotest 1.4.0 (mirage/mirage-channel#33 @craigfe) * Update to cstruct 6.0.0 API, remove use of deprecated Cstruct.len (mirage/mirage-channel#34 @hannesm)
No description provided.