Merge pull request #97 from vibe-d/upgrade_compiler_support

Upgrade compiler support
merged-on-behalf-of: Sönke Ludwig <s-ludwig@users.noreply.github.com>
This commit is contained in:
The Dlang Bot 2018-10-27 12:33:39 +02:00 committed by GitHub
commit 358232abd1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 17 additions and 7 deletions

View file

@ -5,8 +5,9 @@ d:
# 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
# catching most DMD version related build failures early
- dmd-2.082.0
- dmd-2.082.1
- dmd-2.076.1
- ldc-1.12.0
- ldc-1.11.0
- ldc-1.10.0
- ldc-1.9.0

View file

@ -1,11 +1,16 @@
1.4.4 - 2018-09-03
1.4.4 - 2018-10-27
==================
- Compiler support updated to DMD 2.076.1 up to DMD 2.082.0 and LDC 1.6.0 up to 1.11.0 - [pull #92][issue92]
- Compiler support updated to DMD 2.076.1 up to DMD 2.082.1 and LDC 1.6.0 up to 1.12.0 - [pull #92][issue92], [pull #97][issue97]
- Simplified worker task logic by avoiding an explicit event loop - [pull #95][issue95]
- Fixed an issue in `WindowsPath`, where an empty path was converted to "/" when cast to another path type - [pull #91][issue91]
- Fixed two hang issues in `TaskPool` causing the worker task processing to possibly hang at shutdown or to temporarily hang during run time - [pull #96][issue96]
[issue91]: https://github.com/vibe-d/vibe-core/issues/91
[issue92]: https://github.com/vibe-d/vibe-core/issues/92
[issue95]: https://github.com/vibe-d/vibe-core/issues/95
[issue96]: https://github.com/vibe-d/vibe-core/issues/96
[issue97]: https://github.com/vibe-d/vibe-core/issues/97
1.4.3 - 2018-09-03

View file

@ -26,13 +26,14 @@ Supported compilers
The following compilers are tested and supported:
- DMD 2.082.0
- DMD 2.082.1
- DMD 2.081.2
- DMD 2.080.1
- DMD 2.079.0
- DMD 2.078.3
- DMD 2.077.1
- DMD 2.076.1
- LDC 1.12.0
- LDC 1.11.0
- LDC 1.10.0
- LDC 1.9.0

View file

@ -2,13 +2,13 @@ platform: x64
environment:
matrix:
- DC: dmd
DVersion: 2.082.0
DVersion: 2.082.1
arch: x64
- DC: dmd
DVersion: 2.082.0
DVersion: 2.082.1
arch: x86
- DC: dmd
DVersion: 2.082.0
DVersion: 2.082.1
arch: x86_mscoff
- DC: dmd
DVersion: 2.081.2
@ -28,6 +28,9 @@ environment:
- DC: dmd
DVersion: 2.076.1
arch: x64
- DC: ldc
DVersion: 1.12.0
arch: x64
- DC: ldc
DVersion: 1.11.0
arch: x64