Skip to content

Commit

Permalink
Merge pull request #79 from psafont/pre0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
psafont authored Nov 11, 2024
2 parents 91e5258 + f1dd468 commit 5a68212
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 4 deletions.
11 changes: 11 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## v0.13.0 (2024-11-11)
* Add explicit dependencies to the unix library (psafont, #79)
* Include changes present in the in xapi. (#78)
- Add Hybrid_raw_input (robhoes)
- Limit the size of sectors when coalescing (Vincent-lau)
- Speed up unit tests, make them more reliable (etorok, psafont)
- Replace some existing patterns with functions in newer compiler versions,
requires OCaml 4.10 (last-genius, contificate)
* Update usages of io-page and cstruct for compatibility with latest releases
(psafont #77)

## v0.12.3 (2022-06-19)
* Lint opam file (@kit-ty-kate, #72)
* Use ounit2 (@Alessandro-Barbieri, #73)
Expand Down
2 changes: 1 addition & 1 deletion disk/dune
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(library
(name disk)
(package vhd-format-lwt)
(libraries cstruct lwt lwt.unix))
(libraries cstruct lwt lwt.unix unix))
2 changes: 1 addition & 1 deletion vhd_format/dune
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
(name vhd_format)
(public_name vhd-format)
(flags :standard -w -32-34-37)
(libraries stdlib-shims (re_export bigarray-compat) cstruct io-page rresult uuidm)
(libraries stdlib-shims (re_export bigarray-compat) cstruct io-page rresult unix uuidm)
(preprocess (pps ppx_cstruct)))
2 changes: 1 addition & 1 deletion vhd_format_lwt/dune
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(library
(name vhd_format_lwt)
(public_name vhd-format-lwt)
(libraries bigarray-compat cstruct-lwt cstruct lwt lwt.unix mirage-block vhd-format rresult)
(libraries bigarray-compat cstruct-lwt cstruct lwt lwt.unix mirage-block unix vhd-format rresult)
(foreign_stubs
(language c)
(names blkgetsize64_stubs lseek64_stubs odirect_stubs)))
2 changes: 1 addition & 1 deletion vhd_format_lwt_test/dune
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(test
(name parse_test)
(package vhd-format-lwt)
(libraries alcotest alcotest-lwt cstruct disk io-page fmt lwt lwt.unix vhd-format
(libraries alcotest alcotest-lwt cstruct disk io-page fmt lwt lwt.unix unix vhd-format
vhd_format_lwt))

0 comments on commit 5a68212

Please sign in to comment.