Skip to content

Commit 088c116

Browse files
authored
Merge pull request #293 from Geod24/release
Release v1.20.0 + minor fixes
2 parents 08f95b3 + f4f0e97 commit 088c116

File tree

4 files changed

+16
-71
lines changed

4 files changed

+16
-71
lines changed

.travis.yml

Lines changed: 0 additions & 67 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,23 @@
1-
1.19.0 - 2021-05-21
1+
1.20.0 - 2021-08-25
2+
===================
3+
4+
- `core.file`: Fix `-preview=in` support - [pull #290][issue290]
5+
- Mark `TaskFiberQueue.insert` functions `@trusted` (By Dennis Korpel) - [pull #291][issue291]
6+
- Fix possibly hanging process after SIGINT/SIGTERM - [pull #292][issue292]
7+
8+
[issue290]: https://github.com/vibe-d/vibe-core/issues/290
9+
[issue291]: https://github.com/vibe-d/vibe-core/issues/291
10+
[issue292]: https://github.com/vibe-d/vibe-core/issues/292
11+
12+
1.19.0 - 2021-08-14
213
===================
314

415
- Adds a `UDPListenOptions` argument to `listenUDP` - [pull #286][issue286]
516

617
[issue286]: https://github.com/vibe-d/vibe-core/issues/286
718

819

9-
1.18.1 - 2021-05-21
20+
1.18.1 - 2021-07-04
1021
===================
1122

1223
- Fixes compilation on Android - [pull #281][issue281]

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ The core package provides the low level I/O and concurrency primitives that are
1717
The fundamental building block is the fiber based task concept, together with the event based asynchronous I/O model. This enables developing highly scalable I/O concurrent applications without running into the complexities and design implications that asynchronous I/O programming models usually impose. See the [features page](https://vibed.org/features) for a more detailed explanation.
1818

1919
[![DUB Package](https://img.shields.io/dub/v/vibe-core.svg)](https://code.dlang.org/packages/vibe-core)
20-
[![Posix Build Status](https://travis-ci.com/vibe-d/vibe-core.svg?branch=master)](https://travis-ci.com/vibe-d/vibe-core)
20+
[![Posix Build Status](https://github.com/vibe-d/vibe-core/actions/workflows/test.yml/badge.svg)](https://github.com/vibe-d/vibe-core/actions/workflows/test.yml)
21+
[![Musl Build Status](https://github.com/vibe-d/vibe-core/actions/workflows/musl.yml/badge.svg)](https://github.com/vibe-d/vibe-core/actions/workflows/musl.yml)
2122
[![Windows Build status](https://ci.appveyor.com/api/projects/status/eexephyroa7ag3xr/branch/master?svg=true)](https://ci.appveyor.com/project/s-ludwig/vibe-core/branch/master)
2223

2324

source/vibe/core/core.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1458,7 +1458,7 @@ void setTaskCreationCallback(TaskCreationCallback func)
14581458
/**
14591459
A version string representing the current vibe.d core version
14601460
*/
1461-
enum vibeVersionString = "1.19.0";
1461+
enum vibeVersionString = "1.20.0";
14621462

14631463

14641464
/**

0 commit comments

Comments
 (0)