Skip to content

Commit

Permalink
Version bump to v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
seancribbs committed Nov 9, 2011
1 parent 8438608 commit d99417e
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
27 changes: 27 additions & 0 deletions README.md
Expand Up @@ -115,6 +115,33 @@ Webmachine.run

## Changelog

### 0.3.0 November 9, 2011

0.3.0 introduces some new features, refactorings, and now has 100%
documentation coverage! Among the new features are minimal Rack
compatibility, streaming responses via Fibers and a friendlier route
definition syntax. Added Jamis Buck as a committer. Thank you for your
contributions!

* Chunked bodies are now wrapped in a way that works on webservers
that don't automatically produce them.
* HTTP Basic Authentication is easy to add to resources, just include
`Webmachine::Resource::Authentication`.
* Routes are a little less painful to add, you can now specify them
with `Webmachine.routes` which will be evaled into the `Dispatcher`.
* The new default port is 8080.
* Rack is minimally supported as a host server. _Don't put middleware
above Webmachine!_
* Fibers can be used as streamed response bodies.
* `Dispatcher#add_route` will now return the added `Route` instance.
* The header-conversion code for CGI-style servers has been extracted
into `Webmachine::Headers`.
* `Route#path_spec` is now public so that applications can inspect
existing routes, perhaps for URL generation.
* `Request#query` now uses `CGI.unescape` so '+' characters are
correctly parsed.
* YARD documentation has 100% coverage.

### 0.2.0 September 11, 2011

0.2.0 includes an adapter for Mongrel and a central place for
Expand Down
2 changes: 1 addition & 1 deletion lib/webmachine/version.rb
@@ -1,6 +1,6 @@
module Webmachine
# Library version
VERSION = "0.2.0"
VERSION = "0.3.0"

# String for use in "Server" HTTP response header, which includes
# the {VERSION}.
Expand Down

0 comments on commit d99417e

Please sign in to comment.