Skip to content

Commit 2583421

Browse files
committed
Bump version and add changelog for v1.10.0
1 parent bd8c2c6 commit 2583421

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
1.10.0 - 2020-08-24
2+
==================
3+
4+
- The minimum supported compiler has been raised to v2.079.0
5+
- The `log` (`log`, `logTrace`, `logInfo`...) in `vibe.core.log` have been simplified
6+
to take the module / file / line as default runtime argument as opposed to compile-time.
7+
This could cause breakage if you were explicitly forwarding those arguments.
8+
- Some place were previously using `logDebug` for full exception error message,
9+
and were using various method to ensure `nothrow`ness.
10+
All full exception stacktrace are now printed only in diagnostic mode.
11+
- Full details are available in [pull #212][pull212].
12+
13+
[pull212]: https://github.com/vibe-d/vibe-core/issues/212
14+
15+
116
1.9.4 - 2020-08-21
217
==================
318

source/vibe/core/core.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1102,7 +1102,7 @@ void setTaskCreationCallback(TaskCreationCallback func)
11021102
/**
11031103
A version string representing the current vibe.d core version
11041104
*/
1105-
enum vibeVersionString = "1.9.3";
1105+
enum vibeVersionString = "1.10.0";
11061106

11071107

11081108
/**

0 commit comments

Comments
 (0)