-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
[new release] fileutils (0.6.5) #27185
Conversation
CHANGES: ### Fixed - `cmp` returns None when comparing two identical files and add some tests for that. (thanks to jamesjer). - require OCaml > 4.14, which is now the default in Debian stable.
Summary of failures from opam-ci:
Overall, I don't think they have anything to do with fileutils directly. |
depends: [ | ||
"ocaml" {>= "4.14"} | ||
"base-unix" | ||
"stdlib-shims" |
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.
Are stdlib-shims and seq needed for OCaml 4.14? I think they are needed only for very old OCaml versions?
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.
I have removed them.
…are now using ocaml >= 4.14.
…es a new release. This reverts commit dbcf52e.
Dropped in favor of v0.6.6 |
API to manipulate files (POSIX like) and filenames
CHANGES:
Fixed
cmp
returns None when comparing two identical files and add some tests forthat. (thanks to jamesjer).