Skip to content

Commit

Permalink
Bump version and add changelog for v1.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Geod24 committed Aug 24, 2020
1 parent bd8c2c6 commit 2583421
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
==================

Expand Down
2 changes: 1 addition & 1 deletion source/vibe/core/core.d
Original file line number Diff line number Diff line change
Expand Up @@ -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";


/**
Expand Down

0 comments on commit 2583421

Please sign in to comment.