Merge pull request #177 from vibe-d/prepare_release

Prepare for 1.7.0 release
This commit is contained in:
Sönke Ludwig 2019-09-17 23:40:53 +02:00 committed by GitHub
commit 591ab4a944
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 10 additions and 9 deletions

View file

@ -5,16 +5,16 @@ 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.087.1 - dmd-2.088.0
- dmd-2.078.3 - dmd-2.078.3
- ldc-1.17.0 - ldc-1.17.0
- ldc-1.16.0 - ldc-1.16.0
- ldc-1.15.0 - ldc-1.15.0
- ldc-1.14.0 - ldc-1.14.0
- ldc-1.9.0 - ldc-1.9.0
- dmd-2.087.1
- dmd-2.086.1 - dmd-2.086.1
- dmd-2.085.1 - dmd-2.085.1
- dmd-2.084.1
- dmd-2.079.0 - dmd-2.079.0
- dmd-beta - dmd-beta

View file

@ -1,7 +1,7 @@
1.7.0 - 2019-08- 1.7.0 - 2019-09-17
================== ==================
- Supports DMD DMD 2.077.1 up to DMD 2.087.1 and LDC 1.7.0 to LDC 1.17.0 - [pull #166][issue166] - Supports DMD DMD 2.077.1 up to DMD 2.088.0 and LDC 1.7.0 to LDC 1.17.0 - [pull #166][issue166], [pull #177][issue177]
- Added `vibe.core.process` for task based process handling similar to `std.process` (by Benjamin Schaaf) - [pull #154][issue154] - Added `vibe.core.process` for task based process handling similar to `std.process` (by Benjamin Schaaf) - [pull #154][issue154]
- 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]
@ -43,6 +43,7 @@
[issue168]: https://github.com/vibe-d/vibe-core/issues/168 [issue168]: https://github.com/vibe-d/vibe-core/issues/168
[issue169]: https://github.com/vibe-d/vibe-core/issues/169 [issue169]: https://github.com/vibe-d/vibe-core/issues/169
[issue172]: https://github.com/vibe-d/vibe-core/issues/172 [issue172]: https://github.com/vibe-d/vibe-core/issues/172
[issue177]: https://github.com/vibe-d/vibe-core/issues/177
1.6.2 - 2019-03-26 1.6.2 - 2019-03-26

View file

@ -26,10 +26,10 @@ Supported compilers
The following compilers are tested and supported: The following compilers are tested and supported:
- DMD 2.088.0
- DMD 2.087.1 - DMD 2.087.1
- DMD 2.086.1 - DMD 2.086.1
- DMD 2.085.1 - DMD 2.085.1
- DMD 2.084.1
- DMD 2.079.0 - DMD 2.079.0
- LDC 1.17.0 - LDC 1.17.0
- LDC 1.16.0 - LDC 1.16.0

View file

@ -1,6 +1,9 @@
platform: x64 platform: x64
environment: environment:
matrix: matrix:
- DC: dmd
DVersion: 2.088.0
arch: x64
- DC: dmd - DC: dmd
DVersion: 2.087.1 DVersion: 2.087.1
arch: x64 arch: x64
@ -16,9 +19,6 @@ environment:
- DC: dmd - DC: dmd
DVersion: 2.085.1 DVersion: 2.085.1
arch: x64 arch: x64
- DC: dmd
DVersion: 2.084.1
arch: x86
- DC: dmd - DC: dmd
DVersion: 2.079.0 DVersion: 2.079.0
arch: x86_mscoff arch: x86_mscoff

View file

@ -998,7 +998,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.7.0-rc.2"; enum vibeVersionString = "1.7.0";
/** /**