diff --git a/CHANGELOG.md b/CHANGELOG.md index 4361336..268e5a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## unreleased +## 0.1.1 - 2024-07-15 + ### Added - `mazeppa eval`: A built-in evaluator for the Mazeppa language ([issue #5](https://github.com/mazeppa-dev/mazeppa/issues/5)). diff --git a/bin/main.ml b/bin/main.ml index c80fa9a..c30ff57 100644 --- a/bin/main.ml +++ b/bin/main.ml @@ -4,7 +4,7 @@ open Ppx_yojson_conv_lib.Yojson_conv.Primitives let github_repo = "https://github.com/mazeppa-dev/mazeppa" -let version = "0.1.0" +let version = "0.1.1" let tab = " " diff --git a/dune-project b/dune-project index fe36cde..5be4b99 100644 --- a/dune-project +++ b/dune-project @@ -4,7 +4,7 @@ (name mazeppa) -(version 0.1.0) +(version 0.1.1) (generate_opam_files true) diff --git a/mazeppa.opam b/mazeppa.opam index 9385c14..a1b933f 100644 --- a/mazeppa.opam +++ b/mazeppa.opam @@ -1,6 +1,6 @@ # This file is generated by dune, edit dune-project instead opam-version: "2.0" -version: "0.1.0" +version: "0.1.1" synopsis: "A modern supercompiler for call-by-value functional languages" maintainer: ["Tima Kinsart"] authors: ["Tima Kinsart"]