CHANGES.md in jellyfish-0.9.0 vs CHANGES.md in jellyfish-0.9.1

- old
+ new

@@ -1,9 +1,13 @@ # CHANGES -## Jellyfish 0.9.0 +## Jellyfish 0.9.1 -- 2013-08-23 +* Fixed a thread safety bug for initializing exception handlers. + +## Jellyfish 0.9.0 -- 2013-07-11 + ### Enhancements for Jellyfish core * We no longer use exceptions to control the flow. Use `halt(InternalError.new)` instead. However, raising exceptions would still work. Just prefer to use `halt` if you would like @@ -13,10 +17,10 @@ * If you're raising `NotFound` instead of using `forward` in your app, it would no longer forward the request but show a 404 page. Always use `forward` if you intend to forward the request. -## Jellyfish 0.8.0 +## Jellyfish 0.8.0 -- 2013-06-15 ### Incompatible changes * Now there's no longer Jellyfish#controller but Jellyfish.controller, as there's no much point for making the controller per-instance.