From 8c6b6e436faab45e4dbf0c4e38137855f1c86586 Mon Sep 17 00:00:00 2001 From: Adam Lindberg Date: Thu, 25 Jun 2020 13:59:09 +0200 Subject: [PATCH] Version 0.9.0 --- CHANGELOG.md | 6 +++++- doc/overview.edoc | 2 +- src/meck.app.src | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b722dff..0d2de667 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,10 @@ The format is based on [Keep a Changelog], and this project adheres to ## [Unreleased] +## [0.9.0] - 2020-06-25 + ### Added + - Support Erlang 23.0 [8c16751](https://github.com/eproxus/meck/commit/8c16751613c7e4ed594e0675004b1c8f68ea8ddd) - Add a new function `mocked/0` that returns which modules are currently mocked [\#210](https://github.com/eproxus/meck/pull/210) @@ -313,7 +316,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.8.13...HEAD +[Unreleased]: https://github.com/eproxus/meck/compare/0.9.0...HEAD +[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 [0.8.12]: https://github.com/eproxus/meck/compare/0.8.11...0.8.12 [0.8.11]: https://github.com/eproxus/meck/compare/0.8.10...0.8.11 diff --git a/doc/overview.edoc b/doc/overview.edoc index 8a8a3fa2..148f968e 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.8.13 +@version 0.9.0 @title meck, a Mocking Library for Erlang @doc diff --git a/src/meck.app.src b/src/meck.app.src index 02a6aa39..a15478c0 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.8.13"}, + {vsn, "0.9.0"}, {modules, []}, {registered, []}, {applications, [kernel, stdlib, tools, compiler]},