Skip to content

Commit 7cf74df

Browse files
committed
Version 2.1.0
1 parent 4098361 commit 7cf74df

File tree

5 files changed

+15
-5
lines changed

5 files changed

+15
-5
lines changed

Makefile.common

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
HEADERDIR=/usr/include
44
LIBDIR=/usr/lib
55

6-
VERSION=2.0
6+
VERSION=2.1.0
77
VERSION_MAJOR=2
88

99
export CXX CXXOPTS CXXLINKOPTS CXXTESTOPTS CXXTESTLINKOPTS THREADOPT SANITIZE

NEWS

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
Dasynq version 2.1.0:
2+
--------------------
3+
4+
This version includes bugfixes and a minor new feature: the ability to retrieve the "si_code" and
5+
"si_status" values associated with a child process termination (proc_status_t) directly.
6+
7+
Fixes include some compilation issues, and a hang fix for macOS (due to POSIX non-conformance),
8+
possibly also affecting some other systems.
9+
10+
111
Dasynq version 2.0.0:
212
--------------------
313

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Dasynq
22

3-
_Version 2.1.0(pre)_
3+
_Version 2.1.0_
44

55
Dasynq is an event loop library similar to libevent, libev and libuv. Like other such libraries,
66
it is crossplatform / portable. Unlike most other such libraries, it is intended to be completely
@@ -92,7 +92,7 @@ assuming you have pkg-config installed:
9292

9393
There is also CMake support. You can add the following to your `CMakeLists.txt` file:
9494

95-
find_package(Dasynq 2.0.0)
95+
find_package(Dasynq 2.1.0)
9696

9797
# The "old way":
9898
#target_include_directories(testapp PRIVATE "${DASYNQ_INCLUDE_DIRS}")

doc/html/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<div class="content">
77
<h1>Dasynq manual</h1>
88

9-
This is the manual for the <b>Dasynq</b> event loop library (version 2.0).
9+
This is the manual for the <b>Dasynq</b> event loop library (version 2.1.0).
1010

1111
<ul>
1212
<li><a href="#intro">Introduction</a></l1>

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ project('dasynq', 'cpp',
88
# 'werror=true',
99
],
1010
license: 'Apache-2.0',
11-
version: '2.0',
11+
version: '2.1.0',
1212
)
1313

1414
dasynq_deps = []

0 commit comments

Comments
 (0)