Merge pull request #158 from vibe-d/update_compiler_support

Update compiler support.
This commit is contained in:
Sönke Ludwig 2019-06-12 20:14:50 +02:00 committed by GitHub
commit 0fdc38d394
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 24 additions and 5 deletions

View file

@ -5,7 +5,7 @@ d:
# this way the overall test time gets cut down (GDC/LDC are a lot # this way the overall test time gets cut down (GDC/LDC are a lot
# slower tham DMD, so they should be started early), while still # slower tham DMD, so they should be started early), while still
# catching most DMD version related build failures early # catching most DMD version related build failures early
- dmd-2.084.0 - dmd-2.086.0
- dmd-2.078.3 - dmd-2.078.3
- ldc-1.13.0 - ldc-1.13.0
- ldc-1.12.0 - ldc-1.12.0
@ -13,6 +13,8 @@ d:
- ldc-1.10.0 - ldc-1.10.0
- ldc-1.9.0 - ldc-1.9.0
- ldc-1.8.0 - ldc-1.8.0
- dmd-2.085.1
- dmd-2.084.1
- dmd-2.083.1 - dmd-2.083.1
- dmd-2.082.1 - dmd-2.082.1
- dmd-2.081.2 - dmd-2.081.2

View file

@ -5,6 +5,7 @@
- Added `ConnectionPool.removeUnused` to enable closing all unused connections - [pull #143][issue143] - Added `ConnectionPool.removeUnused` to enable closing all unused connections - [pull #143][issue143]
- Added `logException` to log exceptions in a standard and `nothrow` way - [pull #155][issue155] - Added `logException` to log exceptions in a standard and `nothrow` way - [pull #155][issue155]
- Added `TCPListenOptions.reuseAddress` for explicitly control of `SO_REUSEADDR` for listening sockets (by Radu Racariu) - [pull #150][issue150] - Added `TCPListenOptions.reuseAddress` for explicitly control of `SO_REUSEADDR` for listening sockets (by Radu Racariu) - [pull #150][issue150]
- Updated compiler support to DMD 2.086.0 and LDC 1.5.0
- The logging functions now log verbatim if no additional argument is passed (by Denis Feklushkin aka dennizzzka) - [pull #152][issue152] - The logging functions now log verbatim if no additional argument is passed (by Denis Feklushkin aka dennizzzka) - [pull #152][issue152]
- Fixes a potential range violation in `iterateDirectory`/`getFileInfo` - [pull #144][issue144] - Fixes a potential range violation in `iterateDirectory`/`getFileInfo` - [pull #144][issue144]
- Fixes thread-safetly of `Task.join` and `Task.interrupt` when operating cross-thread - [pull #145][issue145] - Fixes thread-safetly of `Task.join` and `Task.interrupt` when operating cross-thread - [pull #145][issue145]

View file

@ -26,13 +26,17 @@ Supported compilers
The following compilers are tested and supported: The following compilers are tested and supported:
- DMD 2.084.0 - DMD 2.086.0
- DMD 2.085.1
- DMD 2.084.1
- DMD 2.083.1 - DMD 2.083.1
- DMD 2.082.1 - DMD 2.082.1
- DMD 2.081.2 - DMD 2.081.2
- DMD 2.080.1 - DMD 2.080.1
- DMD 2.079.0 - DMD 2.079.0
- DMD 2.078.3 - DMD 2.078.3
- LDC 1.15.0
- LDC 1.14.0
- LDC 1.13.0 - LDC 1.13.0
- LDC 1.12.0 - LDC 1.12.0
- LDC 1.11.0 - LDC 1.11.0

View file

@ -2,14 +2,20 @@ platform: x64
environment: environment:
matrix: matrix:
- DC: dmd - DC: dmd
DVersion: 2.084.0 DVersion: 2.086.0
arch: x64 arch: x64
- DC: dmd - DC: dmd
DVersion: 2.084.0 DVersion: 2.086.0
arch: x86 arch: x86
- DC: dmd - DC: dmd
DVersion: 2.084.0 DVersion: 2.086.0
arch: x86_mscoff arch: x86_mscoff
- DC: dmd
DVersion: 2.085.1
arch: x64
- DC: dmd
DVersion: 2.084.1
arch: x86
- DC: dmd - DC: dmd
DVersion: 2.083.1 DVersion: 2.083.1
arch: x86_mscoff arch: x86_mscoff
@ -28,6 +34,12 @@ environment:
- DC: dmd - DC: dmd
DVersion: 2.078.3 DVersion: 2.078.3
arch: x64 arch: x64
- DC: ldc
DVersion: 1.15.0
arch: x64
- DC: ldc
DVersion: 1.14.0
arch: x64
- DC: ldc - DC: ldc
DVersion: 1.13.0 DVersion: 1.13.0
arch: x64 arch: x64