diff options
| author | Andy Wingo <wingo@pobox.com> | 2017-01-19 04:30:48 +0100 |
|---|---|---|
| committer | Andy Wingo <wingo@pobox.com> | 2017-01-19 04:40:07 +0100 |
| commit | 1c3901907fc8ae2e00ac0bda08c7d2e754cc9304 (patch) | |
| tree | 45ba692e5eba7edc059d02bbc36c1311dc8e8910 | |
| parent | Update documentation. (diff) | |
| download | guile-fibers-0.5.0.tar.gz | |
Fibers v0.5.0.v0.5.0
* configure.ac: Bump version.
* NEWS: Update.
| -rw-r--r-- | NEWS | 11 | ||||
| -rw-r--r-- | configure.ac | 2 |
2 files changed, 12 insertions, 1 deletions
@@ -5,6 +5,17 @@ Fibers is a facility that provides Erlang-like concurrency for Guile Scheme. +fibers 0.5.0 -- 2016-01-19 +========================== + +* Add parallelism support, with both work stealing and explicit work + sharing. Enabled by default. + +* Allow channel sends and receives and other Concurrent ML-like + operations to be performed from outside of fibers. + +* Enable preemption by default. + fibers 0.4.0 -- 2016-12-16 ========================== diff --git a/configure.ac b/configure.ac index c0fff76..336ccd0 100644 --- a/configure.ac +++ b/configure.ac @@ -19,7 +19,7 @@ License along with this program. If not, see ]]) AC_PREREQ(2.52) -AC_INIT([fibers], [0.4.0]) +AC_INIT([fibers], [0.5.0]) AC_CONFIG_SRCDIR([env.in]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_MACRO_DIRS([m4]) |
