This repository was archived by the owner on Jul 18, 2025. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,6 +2,25 @@ Fibers NEWS
22
33Fibers is a facility that provides Go-like concurrency for Guile Scheme.
44
5+ fibers 1.2.0 -- 2022-12-22
6+ ==========================
7+
8+ * Add support for 'libevent' backend. Currently only native 'epoll' is
9+ supported. If 'epoll' is not detected we would default to 'libevent'. If you
10+ have 'epoll' but want to try 'libevent' you can always do './configure
11+ --disable-epoll'.
12+
13+ * Do not re-add FD finalisers on FDs that already have one.
14+
15+ * Introduce 'pipe2' (for 'epoll') and mark wake pipe as O_CLOEXEC.
16+
17+ * Implement operations for waiting for readability / writability.
18+
19+ * Support streaming responses in Fibers' web server to allow for bigger
20+ responses.
21+
22+ * Fix behaviour of 'epoll-wake!' after 'run-fibers'.
23+
524fibers 1.1.1 -- 2022-06-03
625==========================
726
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ License along with this program. If not, see
2121] ] )
2222
2323AC_PREREQ ( [ 2.71] )
24- AC_INIT ( [ fibers] ,[ 1.1.1 ] )
24+ AC_INIT ( [ fibers] ,[ 1.2.0 ] )
2525AC_CONFIG_SRCDIR ( [ env.in] )
2626AC_CONFIG_AUX_DIR ( [ build-aux] )
2727AC_CONFIG_MACRO_DIRS([ m4] )
Original file line number Diff line number Diff line change 44@settitle Fibers
55@c %**end of header
66
7- @set VERSION 1.1.1
8- @set UPDATED 3 June 2022
7+ @set VERSION 1.2.0
8+ @set UPDATED 22 December 2022
99
1010@copying
1111This manual is for Fibers (version @value {VERSION }, updated
1212@value {UPDATED })
1313
14- Copyright 2016-2022 Andy Wingo
14+ Copyright 2016 Andy Wingo
1515Copyright 2021 Maxime Devos
16+ Copyright 2022 Aleix Conchillo Flaqué
1617
1718@quotation
1819@c For more information, see COPYING.docs in the fibers
You can’t perform that action at this time.
0 commit comments