From 094de42f97dafdb8ba990aea5792e6d40f4cbad6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6nke=20Ludwig?= Date: Fri, 17 Nov 2017 11:56:18 +0100 Subject: [PATCH] Update change log. --- CHANGELOG.md | 18 ++++++++++++++++++ source/vibe/core/file.d | 1 - 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 513f1e5..86e894d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +1.3.0 - 2017-11-17 +================== + +- Compiles on DMD 2.071.2 up to 2.077.0 +- Fixes the fiber event scheduling mechanism to not cause any heap allocations - this alone gives a performance boost of around 20% in the bench-dummy-http example - [pull #27][issue27] +- Added `FileInfo.hidden` property +- `pipe()` now returns the actual number of bytes written +- Fixed `TCPListener.bindAddress` +- Fixed a segmentation fault when logging from a non-D thread +- Fixed `setupWorkerThreads` and `workerThreadCount` - [issue #35][issue35] +- Added `TaskPool.threadCount` property +- Added an `interface_index` parameter to `UDPConnection.addMembership` +- `Task.tid` can now be called on a `const(Task)` + +[issue27]: https://github.com/vibe-d/vibe-core/issues/27 +[issue35]: https://github.com/vibe-d/vibe-core/issues/35 + + 1.2.0 - 2017-09-05 ================== diff --git a/source/vibe/core/file.d b/source/vibe/core/file.d index 74d4f5e..efb74e8 100644 --- a/source/vibe/core/file.d +++ b/source/vibe/core/file.d @@ -492,7 +492,6 @@ struct FileStream { cb => eventDriver.files.cancelWrite(m_fd) ); ctx.ptr += res[2]; -logDebug("Written %s", res[2]); if (ctx.ptr > ctx.size) ctx.size = ctx.ptr; enforce(res[1] == IOStatus.ok, "Failed to read data from disk."); return res[2];