NEWS 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. Fibers NEWS
  2. Fibers is a facility that provides Erlang-like concurrency for Guile
  3. Scheme.
  4. fibers 0.5.0 -- 2016-01-19
  5. ==========================
  6. * Add parallelism support, with both work stealing and explicit work
  7. sharing. Enabled by default.
  8. * Allow channel sends and receives and other Concurrent ML-like
  9. operations to be performed from outside of fibers.
  10. * Enable preemption by default.
  11. fibers 0.4.0 -- 2016-12-16
  12. ==========================
  13. * Added preemption support; see `run-fibers' documentation in the
  14. manual for more.
  15. * Documented REPL commands and examples.
  16. * Documented more pitfalls.
  17. * Use `suspendable-continuation?' if present.
  18. * Fibers each have their own dynamic state.
  19. fibers 0.3.0 -- 2016-10-12
  20. ==========================
  21. * See git log.
  22. fibers 0.2.0 -- 2016-09-11
  23. ==========================
  24. * See git log.
  25. fibers 0.1.0 -- 2016-07-02
  26. ==========================
  27. * First release.
  28. Copyright (C) 2016 Andy Wingo <wingo at pobox dot com>
  29. Copying and distribution of this file, with or without modification, are
  30. permitted in any medium without royalty provided the copyright notice
  31. and this notice are preserved.