diff options
| -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]) |
