diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e49aa41..7b8ae596 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ The format is based on [Keep a Changelog], and this project adheres to ## [Unreleased] +## [0.9.2] - 2021-03-06 + +### Fixed + +- Fix a Dialyzer warning on OTP 24 [\#223](https://github.com/eproxus/meck/pull/223) + ## [0.9.1] - 2021-02-17 ### Fixed @@ -323,7 +329,8 @@ The format is based on [Keep a Changelog], and this project adheres to - dialyzer unmatched return errors [\#24](https://github.com/eproxus/meck/issues/24) -[Unreleased]: https://github.com/eproxus/meck/compare/0.9.1...HEAD +[Unreleased]: https://github.com/eproxus/meck/compare/0.9.2...HEAD +[0.9.2]: https://github.com/eproxus/meck/compare/0.9.1...0.9.2 [0.9.1]: https://github.com/eproxus/meck/compare/0.9.0...0.9.1 [0.9.0]: https://github.com/eproxus/meck/compare/0.8.13...0.9.0 [0.8.13]: https://github.com/eproxus/meck/compare/0.8.12...0.8.13 diff --git a/doc/overview.edoc b/doc/overview.edoc index ee219d75..f4624b4f 100644 --- a/doc/overview.edoc +++ b/doc/overview.edoc @@ -16,7 +16,7 @@ @author Adam Lindberg @copyright 2010-2017 Adam Lindberg, 2010-2011 Erlang Solutions Ltd -@version 0.9.1 +@version 0.9.2 @title meck, a Mocking Library for Erlang @doc diff --git a/src/meck.app.src b/src/meck.app.src index 82c8a314..2a3c7f28 100644 --- a/src/meck.app.src +++ b/src/meck.app.src @@ -1,6 +1,6 @@ {application, meck, [ {description, "A mocking framework for Erlang"}, - {vsn, "0.9.1"}, + {vsn, "0.9.2"}, {modules, []}, {registered, []}, {applications, [kernel, stdlib, tools, compiler]},