Merge pull request #245 from vibe-d/release_preparation

Release preparation
This commit is contained in:
Sönke Ludwig 2021-01-12 21:14:46 +01:00 committed by GitHub
commit bf947f80e7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 17 additions and 13 deletions

View file

@ -20,7 +20,6 @@ jobs:
arch: [x86_64]
include:
- { os: windows-latest, dc: dmd-2.092.0, arch: x86_64 }
- { os: windows-latest, dc: dmd-2.092.0, arch: x86 }
- { os: windows-latest, dc: dmd-2.092.0, arch: x86_mscoff }
- { os: windows-latest, dc: dmd-2.091.1, arch: x86_64 }
- { os: windows-latest, dc: dmd-2.086.1, arch: x86_64 }

View file

@ -1,7 +1,20 @@
1.11.4 - 2021-01-12
===================
- Added `ChannelConfig` and a channel mode to minimize synchronization overhead - [pull #241][issue241]
- Added `DirectoryListMode` and optimized `listDirectory`/`iterateDirectory` - [pull #242][issue242], [pull #244][issue244]
- Optimized `PipeMode.concurrent` for fast streams - [pull #243][issue243]
[issue241]: https://github.com/vibe-d/vibe-core/issues/241
[issue242]: https://github.com/vibe-d/vibe-core/issues/242
[issue243]: https://github.com/vibe-d/vibe-core/issues/243
[issue244]: https://github.com/vibe-d/vibe-core/issues/244
1.11.3 - 2020-12-18
===================
- Fixed a task schleduling issue for busy worker tasks that call `yield()` periodically - [pull #240][issue240]
- Fixed a task scheduling issue for busy worker tasks that call `yield()` periodically - [pull #240][issue240]
- Fixed a compilation error on DMD 2.079.0
[issue240]: https://github.com/vibe-d/vibe-core/issues/240
@ -10,7 +23,7 @@
1.11.2 - 2020-12-12
===================
- `ScopedMutexLock` is now nothrow, using assertions instead of `Exception` in case of misuse
- `ScopedMutexLock` is now `nothrow`, using assertions instead of `Exception` in case of misuse
- Fixes a possible "access denied" error for directories that have been iterated using `listDirectory` on Windows - [pull #239][issue239]
[issue239]: https://github.com/vibe-d/vibe-core/issues/239

10
dub.sdl
View file

@ -15,10 +15,6 @@ configuration "winapi" {
subConfiguration "eventcore" "winapi"
versions "Windows7"
}
configuration "winapi-optlink" {
subConfiguration "eventcore" "winapi-optlink"
versions "Windows7"
}
configuration "epoll" {
subConfiguration "eventcore" "epoll"
}
@ -30,11 +26,7 @@ configuration "kqueue" {
}
configuration "select" {
subConfiguration "eventcore" "select"
versions "Windows7" platform="win"
}
configuration "select-optlink" {
subConfiguration "eventcore" "select-optlink"
versions "Windows7" platform="win"
versions "Windows7" platform="windows"
}
configuration "libasync" {
subConfiguration "eventcore" "libasync"

View file

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