Skip to content

Commit

Permalink
0.9.0.4 maint release
Browse files Browse the repository at this point in the history
  • Loading branch information
rtomayko committed Jan 25, 2009
1 parent b923e09 commit 219728a
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGES
@@ -1,3 +1,12 @@
= 0.9.0.4 / 2009-01-25

* Using halt with more than 1 args causes ArgumentError [#131]
* using halt in a before filter doesn't modify response [#127]
* Add deprecated Sinatra::EventContext to unbreak plugins [#130]
* Give access to GET/POST params in filters [#129]
* Preserve non-nested params in nested params hash [#117]
* Fix backtrace dump with Rack::Lint [#116]

= 0.9.0.3 / 2009-01-21

* Fall back on mongrel then webrick when thin not found. [#75]
Expand Down
2 changes: 1 addition & 1 deletion lib/sinatra/base.rb
Expand Up @@ -4,7 +4,7 @@
require 'rack/builder'

module Sinatra
VERSION = '0.9.0.3'
VERSION = '0.9.0.4'

class Request < Rack::Request
def user_agent
Expand Down
5 changes: 3 additions & 2 deletions sinatra.gemspec
Expand Up @@ -3,8 +3,8 @@ Gem::Specification.new do |s|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=

s.name = 'sinatra'
s.version = '0.9.0.3'
s.date = '2009-01-21'
s.version = '0.9.0.4'
s.date = '2009-01-25'

s.description = "Classy web-development dressed in a DSL"
s.summary = "Classy web-development dressed in a DSL"
Expand All @@ -22,6 +22,7 @@ Gem::Specification.new do |s|
compat/app_test.rb
compat/application_test.rb
compat/builder_test.rb
compat/compat_test.rb
compat/custom_error_test.rb
compat/erb_test.rb
compat/events_test.rb
Expand Down

0 comments on commit 219728a

Please sign in to comment.