diff --git a/CHANGES.md b/CHANGES.md index edac8937..bba24917 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,15 @@ +## [0.3.3] -- 2024-04-23 + +### Added + +- GitHub workflow for continuous integration and API docs. +- Randomness plug-ins via global config `randomness_lib`: currently only `stdlib` and `for_tests`. + +### Fixed + +- A bit of code rot in the Cuda backend mock `cuda_backend.missing.ml`. +- NPY: Compatibility with OCaml 5.2.0. + ## [0.3.2] -- 2024-04-22 ### Added diff --git a/arrayjit.opam b/arrayjit.opam index 0a2c7e9d..9df8819c 100644 --- a/arrayjit.opam +++ b/arrayjit.opam @@ -1,6 +1,6 @@ # This file is generated by dune, edit dune-project instead opam-version: "2.0" -version: "0.3.2" +version: "0.3.3" synopsis: "An array language compiler with multiple backends (CPU, Cuda), staged compilation" description: diff --git a/dune-project b/dune-project index f0640b96..b4f4952e 100644 --- a/dune-project +++ b/dune-project @@ -4,7 +4,7 @@ (name ocannl) -(version 0.3.2) +(version 0.3.3) (generate_opam_files true) @@ -30,7 +30,7 @@ (name ocannl_npy) (synopsis "Numpy file format support for ocaml") (authors "Laurent Mazare") - (maintainers "Laurent Mazare ") + (maintainers "Lukasz Stafiniak ") (depends (ocaml (>= 4.06)) diff --git a/ocannl.opam b/ocannl.opam index 668b624d..e626bce9 100644 --- a/ocannl.opam +++ b/ocannl.opam @@ -1,6 +1,6 @@ # This file is generated by dune, edit dune-project instead opam-version: "2.0" -version: "0.3.2" +version: "0.3.3" synopsis: "A from-scratch Deep Learning framework with an optimizing compiler, shape inference, concise syntax" description: diff --git a/ocannl_npy.opam b/ocannl_npy.opam index 88d22480..c8d42ea3 100644 --- a/ocannl_npy.opam +++ b/ocannl_npy.opam @@ -1,8 +1,8 @@ # This file is generated by dune, edit dune-project instead opam-version: "2.0" -version: "0.3.2" +version: "0.3.3" synopsis: "Numpy file format support for ocaml" -maintainer: ["Laurent Mazare "] +maintainer: ["Lukasz Stafiniak "] authors: ["Laurent Mazare"] license: "BSD-2-Clause" homepage: "https://github.com/lukstafi/ocannl"