diff --git a/CHANGELOG.md b/CHANGELOG.md index dfaed67..f975869 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [PVP versioning](https://pvp.haskell.org/). +## v2.3.1 _(2024-08-16)_ + +### Changed +- Instances for `Boolean`, `Num` & `Fractional` on `Expr` now use smart constructors + ## v2.3.0 _(2024-08-12)_ ### Added diff --git a/hasmtlib.cabal b/hasmtlib.cabal index 114eb9e..7999de0 100644 --- a/hasmtlib.cabal +++ b/hasmtlib.cabal @@ -1,7 +1,7 @@ cabal-version: 3.0 name: hasmtlib -version: 2.3.0 +version: 2.3.1 synopsis: A monad for interfacing with external SMT solvers description: Hasmtlib is a library for generating SMTLib2-problems using a monad. It takes care of encoding your problem, marshaling the data to an external solver and parsing and interpreting the result into Haskell types.