NEWS 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. wslay 1.0.0
  2. ===========
  3. Release Note
  4. ------------
  5. This release fixes several build issues. Most changes were introduced
  6. by contributors. Thank you for all the contributions in this project.
  7. Because wslay is very stable since the previous release (more than 2
  8. years ago), we mark this release 1.0.0.
  9. Changes
  10. -------
  11. * Fix NULL check in wslay_frame_context_init.
  12. Patch from Witchakorn Kamolpornwijit
  13. * the examples uses epoll and thus only be built on linux
  14. Patch from Kazuho Oku
  15. * build: allow one to build out-of-tree documentation
  16. Patch from Vincent Bernat
  17. * build: fix `./configure` when nettle is not present
  18. `PKG_CHECK_MODULES` will fail unless we give it an action to execute
  19. on failure. When nettle is not available, we set `have_nettle` to
  20. `no`.
  21. Patch from Vincent Bernat
  22. * Adds the ability to override the version header include with a
  23. define. This enables projects to set the build version from the
  24. compile environment and avoid the need to generate the version
  25. header.
  26. Patch from Ben Vanik
  27. * Improve http_handshake in fork-echoserver.
  28. Patch from Gurjeet Singh
  29. * Don't send any pending control frame other than Close control frame
  30. after Close is queued.