Skip to content
This repository was archived by the owner on Jul 18, 2025. It is now read-only.

Commit 76211c1

Browse files
committed
Fibers 1.2.0
1 parent 8f4ce08 commit 76211c1

3 files changed

Lines changed: 24 additions & 4 deletions

File tree

NEWS

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,25 @@ Fibers NEWS
22

33
Fibers 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+
524
fibers 1.1.1 -- 2022-06-03
625
==========================
726

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ License along with this program. If not, see
2121
]])
2222

2323
AC_PREREQ([2.71])
24-
AC_INIT([fibers],[1.1.1])
24+
AC_INIT([fibers],[1.2.0])
2525
AC_CONFIG_SRCDIR([env.in])
2626
AC_CONFIG_AUX_DIR([build-aux])
2727
AC_CONFIG_MACRO_DIRS([m4])

fibers.texi

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,16 @@
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
1111
This manual is for Fibers (version @value{VERSION}, updated
1212
@value{UPDATED})
1313

14-
Copyright 2016-2022 Andy Wingo
14+
Copyright 2016 Andy Wingo
1515
Copyright 2021 Maxime Devos
16+
Copyright 2022 Aleix Conchillo Flaqué
1617

1718
@quotation
1819
@c For more information, see COPYING.docs in the fibers

0 commit comments

Comments
 (0)