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"; /**