From e3492bab067f07f9ed2e700d3c3b03958f7e238f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6nke=20Ludwig?= Date: Sun, 16 Jul 2017 22:29:45 +0200 Subject: [PATCH] Update change log and bump version number. --- CHANGELOG.md | 8 ++++++++ source/vibe/core/core.d | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 37dce20..22d0fd9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +1.1.0 - 2016-07-16 +================== + +- Added a new debug hook `setTaskCreationCallback` +- Fixed a compilation error for `VibeIdleCollect` +- Fixed a possible double-free in `ManualEvent` that resulted in an endless loop - [pull #23][issue23] + + 1.0.0 - 2016-07-10 ================== diff --git a/source/vibe/core/core.d b/source/vibe/core/core.d index ef13d6d..8eb846d 100644 --- a/source/vibe/core/core.d +++ b/source/vibe/core/core.d @@ -942,7 +942,7 @@ void setTaskCreationCallback(TaskCreationCallback func) /** A version string representing the current vibe version */ -enum vibeVersionString = "1.0.0"; +enum vibeVersionString = "1.1.0"; /**