diff --git a/CHANGELOG.md b/CHANGELOG.md index b100290..7c6c266 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +1.10.0 - 2020-08-24 +================== + +- The minimum supported compiler has been raised to v2.079.0 +- The `log` (`log`, `logTrace`, `logInfo`...) in `vibe.core.log` have been simplified + to take the module / file / line as default runtime argument as opposed to compile-time. + This could cause breakage if you were explicitly forwarding those arguments. +- Some place were previously using `logDebug` for full exception error message, + and were using various method to ensure `nothrow`ness. + All full exception stacktrace are now printed only in diagnostic mode. +- Full details are available in [pull #212][pull212]. + +[pull212]: https://github.com/vibe-d/vibe-core/issues/212 + + 1.9.4 - 2020-08-21 ================== diff --git a/source/vibe/core/core.d b/source/vibe/core/core.d index 8f70c05..437bd7d 100644 --- a/source/vibe/core/core.d +++ b/source/vibe/core/core.d @@ -1102,7 +1102,7 @@ void setTaskCreationCallback(TaskCreationCallback func) /** A version string representing the current vibe.d core version */ -enum vibeVersionString = "1.9.3"; +enum vibeVersionString = "1.10.0"; /**