Skip to content

Commit aff362c

Browse files
committed
Version 2.0
1 parent af98edc commit aff362c

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

Makefile.common

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
HEADERDIR=/usr/include
44
LIBDIR=/usr/lib
55

6-
VERSION=1.2.5
7-
VERSION_MAJOR=1
6+
VERSION=2.0
7+
VERSION_MAJOR=2
88

99
export CXX CXXOPTS CXXLINKOPTS CXXTESTOPTS CXXTESTLINKOPTS THREADOPT SANITIZE
1010
export HEADERDIR LIBDIR DESTDIR VERSION VERSION_MAJOR

NEWS

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
Dasynq version 2.0.0:
2+
--------------------
3+
4+
This major new release introduces a small backwards incompatibility. Child watchers now receive information
5+
about child status via a wrapper type (proc_status_t). On systems which support it (eg. FreeBSD) the full
6+
integer exit value is available, rather than just the lower 8 bits.
7+
8+
This version also includes compilation fixes and (theoretical) bug fixes for the pselect/select backends.
9+
10+
111
Dasynq version 1.2.5:
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 1.2.5_
3+
_Version 2.0_
44

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

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

92-
find_package(Dasynq 1.2.5)
92+
find_package(Dasynq 2.0.0)
9393

9494
# The "old way":
9595
#target_include_directories(testapp PRIVATE "${DASYNQ_INCLUDE_DIRS}")

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: '1.2.5',
11+
version: '2.0',
1212
)
1313

1414
dasynq_deps = []

0 commit comments

Comments
 (0)