Update change log and bump version to 1.10.3.

This commit is contained in:
Sönke Ludwig 2020-10-15 14:13:16 +02:00
parent 97fdff2574
commit a736481467
2 changed files with 13 additions and 5 deletions

View file

@ -1,11 +1,19 @@
1.10.3 - 2020-10-15
===================
- Fixed `waitForDataEx` to return `WaitForDataStatus.timeout` for zero-timeouts if the connection is still alive [pull #232][issue232]
[issue232]: https://github.com/vibe-d/vibe-core/issues/232
1.10.2 - 2020-09-18 1.10.2 - 2020-09-18
=================== ===================
- Fixed a critical data corruption bug caused by eventcore's `cancelRead`/`cancelWrite` - note that this fix makes `File.read` and `write` uninterruptible - [pull #227][pull 227] - Fixed a critical data corruption bug caused by eventcore's `cancelRead`/`cancelWrite` - note that this fix makes `File.read` and `write` uninterruptible - [pull #227][issue227]
- Fixed `InterfaceProxy!T` to behave correctly for `null` target instances - [pull #228][pull228] - Fixed `InterfaceProxy!T` to behave correctly for `null` target instances - [pull #228][issue228]
[pull227]: https://github.com/vibe-d/vibe-core/issues/227 [issue227]: https://github.com/vibe-d/vibe-core/issues/227
[pull228]: https://github.com/vibe-d/vibe-core/issues/228 [issue228]: https://github.com/vibe-d/vibe-core/issues/228
1.10.1 - 2020-08-31 1.10.1 - 2020-08-31

View file

@ -1102,7 +1102,7 @@ void setTaskCreationCallback(TaskCreationCallback func)
/** /**
A version string representing the current vibe.d core version A version string representing the current vibe.d core version
*/ */
enum vibeVersionString = "1.10.2"; enum vibeVersionString = "1.10.3";
/** /**