Skip to content

Commit 504ecc0

Browse files
committed
Version 1.2.1
1 parent 1d38ebc commit 504ecc0

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
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/dasynq
44
LIBDIR=/usr/lib
55

6-
VERSION=1.2.0
6+
VERSION=1.2.1
77
VERSION_MAJOR=1
88

99
export CXX CXXOPTS CXXLINKOPTS CXXTESTOPTS CXXTESTLINKOPTS THREADOPT SANITIZE

NEWS

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Dasynq version X:
2-
----------------
1+
Dasynq version 1.2.1:
2+
--------------------
33

44
This version fixes a bug which triggered when an event loop was constructed with delayed initialisation and
55
then never initialised before being destroyed. On systems using POSIX timers (such as FreeBSD), this could
@@ -8,6 +8,8 @@ cause a crash.
88
On Linux, eventfd is used as the mechanism to signal an event loop in another thread, rather than a pipe.
99
This uses one less file descriptor and is more efficient generally.
1010

11+
Some minor packaging issues have been resolved.
12+
1113

1214
Dasynq version 1.2.0:
1315
--------------------

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.0_
3+
_Version 1.2.1_
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
@@ -85,7 +85,7 @@ assuming you have pkg-config installed:
8585

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

88-
find_package(Dasynq 1.2.0)
88+
find_package(Dasynq 1.2.1)
8989

9090
# The "old way". Not sexy, but works without hitches.
9191
#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 1.2.0).
9+
This is the manual for the <b>Dasynq</b> event loop library (version 1.2.1).
1010

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

0 commit comments

Comments
 (0)