Skip to content

Commit

Permalink
Version 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
davmac314 committed Sep 17, 2024
1 parent 4098361 commit 7cf74df
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile.common
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
HEADERDIR=/usr/include
LIBDIR=/usr/lib

VERSION=2.0
VERSION=2.1.0
VERSION_MAJOR=2

export CXX CXXOPTS CXXLINKOPTS CXXTESTOPTS CXXTESTLINKOPTS THREADOPT SANITIZE
Expand Down
10 changes: 10 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
Dasynq version 2.1.0:
--------------------

This version includes bugfixes and a minor new feature: the ability to retrieve the "si_code" and
"si_status" values associated with a child process termination (proc_status_t) directly.

Fixes include some compilation issues, and a hang fix for macOS (due to POSIX non-conformance),
possibly also affecting some other systems.


Dasynq version 2.0.0:
--------------------

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Dasynq

_Version 2.1.0(pre)_
_Version 2.1.0_

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

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

find_package(Dasynq 2.0.0)
find_package(Dasynq 2.1.0)

# The "old way":
#target_include_directories(testapp PRIVATE "${DASYNQ_INCLUDE_DIRS}")
Expand Down
2 changes: 1 addition & 1 deletion doc/html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<div class="content">
<h1>Dasynq manual</h1>

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

<ul>
<li><a href="#intro">Introduction</a></l1>
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ project('dasynq', 'cpp',
# 'werror=true',
],
license: 'Apache-2.0',
version: '2.0',
version: '2.1.0',
)

dasynq_deps = []
Expand Down

0 comments on commit 7cf74df

Please sign in to comment.