Skip to content

Commit

Permalink
Fibers 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aconchillo committed Dec 22, 2022
1 parent 8f4ce08 commit 76211c1
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 4 deletions.
19 changes: 19 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,25 @@ Fibers NEWS

Fibers is a facility that provides Go-like concurrency for Guile Scheme.

fibers 1.2.0 -- 2022-12-22
==========================

* Add support for 'libevent' backend. Currently only native 'epoll' is
supported. If 'epoll' is not detected we would default to 'libevent'. If you
have 'epoll' but want to try 'libevent' you can always do './configure
--disable-epoll'.

* Do not re-add FD finalisers on FDs that already have one.

* Introduce 'pipe2' (for 'epoll') and mark wake pipe as O_CLOEXEC.

* Implement operations for waiting for readability / writability.

* Support streaming responses in Fibers' web server to allow for bigger
responses.

* Fix behaviour of 'epoll-wake!' after 'run-fibers'.

fibers 1.1.1 -- 2022-06-03
==========================

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ License along with this program. If not, see
]])

AC_PREREQ([2.71])
AC_INIT([fibers],[1.1.1])
AC_INIT([fibers],[1.2.0])
AC_CONFIG_SRCDIR([env.in])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIRS([m4])
Expand Down
7 changes: 4 additions & 3 deletions fibers.texi
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,16 @@
@settitle Fibers
@c %**end of header

@set VERSION 1.1.1
@set UPDATED 3 June 2022
@set VERSION 1.2.0
@set UPDATED 22 December 2022

@copying
This manual is for Fibers (version @value{VERSION}, updated
@value{UPDATED})

Copyright 2016-2022 Andy Wingo
Copyright 2016 Andy Wingo
Copyright 2021 Maxime Devos
Copyright 2022 Aleix Conchillo Flaqué

@quotation
@c For more information, see COPYING.docs in the fibers
Expand Down

0 comments on commit 76211c1

Please sign in to comment.