diff --git a/CHANGES.md b/CHANGES.md index b8ae174..7c4421c 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,10 @@ + +### 0.5.1 + +* Fix support on ARM64 platforms (Linux and MacOS) (#34, @tmcgilchrist) +* Remove ocamlfind dependency. (#36, @tmcgilchrist) +* Expand gc-stats help (#28, @ju-sh) + ### 0.5.0 * Custom events for json (#24, @Sudha247) diff --git a/dune-project b/dune-project index ec70f3a..308d343 100644 --- a/dune-project +++ b/dune-project @@ -21,4 +21,5 @@ hdr_histogram (cmdliner (>= 1.1.0)) tracing + (ocaml_intrinsics (>= v0.16.1)) (menhir :with-test))) diff --git a/runtime_events_tools.opam b/runtime_events_tools.opam index df42cad..17f1053 100644 --- a/runtime_events_tools.opam +++ b/runtime_events_tools.opam @@ -14,6 +14,7 @@ depends: [ "hdr_histogram" "cmdliner" {>= "1.1.0"} "tracing" + "ocaml_intrinsics" {>= "v0.16.1"} "menhir" {with-test} "odoc" {with-doc} ] @@ -32,9 +33,4 @@ build: [ ] ] dev-repo: "git+https://github.com/tarides/runtime_events_tools.git" -pin-depends: [ - # OCaml Intrinsics v0.16.0 plus ARM64 support see - # https://github.com/janestreet/ocaml_intrinsics/pull/6 and - # https://github.com/janestreet/ocaml_intrinsics/pull/7 - "ocaml_intrinsics.v0.16.0" "git+https://github.com/tmcgilchrist/ocaml_intrinsics#fc6037516350f90e8d003c170263eaa734fc5e76" -] \ No newline at end of file +available: (arch = "x86_64" | arch = "arm64") & os != "win32" \ No newline at end of file diff --git a/runtime_events_tools.opam.template b/runtime_events_tools.opam.template index fe9ce85..7948175 100644 --- a/runtime_events_tools.opam.template +++ b/runtime_events_tools.opam.template @@ -1,6 +1 @@ -pin-depends: [ - # OCaml Intrinsics v0.16.0 plus ARM64 support see - # https://github.com/janestreet/ocaml_intrinsics/pull/6 and - # https://github.com/janestreet/ocaml_intrinsics/pull/7 - "ocaml_intrinsics.v0.16.0" "git+https://github.com/tmcgilchrist/ocaml_intrinsics#fc6037516350f90e8d003c170263eaa734fc5e76" -] \ No newline at end of file +available: (arch = "x86_64" | arch = "arm64") & os != "win32" \ No newline at end of file