summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS11
-rw-r--r--configure.ac2
2 files changed, 12 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 45d4710..fd526cb 100644
--- a/NEWS
+++ b/NEWS
@@ -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])