From b417214e325a7fb684817b4ae7b218eec46c11c1 Mon Sep 17 00:00:00 2001 From: Geod24 Date: Mon, 3 Aug 2020 01:34:52 +0900 Subject: [PATCH] Bump version and add changelog for v1.9.3 --- CHANGELOG.md | 13 +++++++++++++ source/vibe/core/core.d | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9770555..6b6d9e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +1.9.3 - 2020-08-02 +================== + +- Removed dead import of deprecated symbol `enforceEx` - [pull #214][issue214] +- Improved error messages for non-implemented interfaces - [pull #216][issue216] +- Improved internal unittests to be forward-compatible - [pull #213][pull213] and [pull #215][pull215] + +[issue213]: https://github.com/vibe-d/vibe-core/issues/213 +[issue214]: https://github.com/vibe-d/vibe-core/issues/214 +[issue215]: https://github.com/vibe-d/vibe-core/issues/215 +[issue216]: https://github.com/vibe-d/vibe-core/issues/216 + + 1.9.2 - 2020-05-28 ================== diff --git a/source/vibe/core/core.d b/source/vibe/core/core.d index 390587c..8d48ed5 100644 --- a/source/vibe/core/core.d +++ b/source/vibe/core/core.d @@ -1105,7 +1105,7 @@ void setTaskCreationCallback(TaskCreationCallback func) /** A version string representing the current vibe.d core version */ -enum vibeVersionString = "1.9.2"; +enum vibeVersionString = "1.9.3"; /**