Skip to content

Commit

Permalink
0.9.0.1 "that was quick" release
Browse files Browse the repository at this point in the history
  • Loading branch information
rtomayko committed Jan 18, 2009
1 parent 8a4d1a0 commit 611442f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions Rakefile
Expand Up @@ -72,6 +72,7 @@ task 'publish:doc' => 'doc/api/index.html' do
sh 'scp -rp doc/* rubyforge.org:/var/www/gforge-projects/sinatra/'
end

desc 'Publish gem and tarball to rubyforge'
task 'publish:gem' => [package('.gem'), package('.tar.gz')] do |t|
sh <<-end
rubyforge add_release sinatra sinatra #{spec.version} #{package('.gem')} &&
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'
VERSION = '0.9.0.1'

class Request < Rack::Request
def user_agent
Expand Down
2 changes: 1 addition & 1 deletion sinatra.gemspec
Expand Up @@ -3,7 +3,7 @@ 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'
s.version = '0.9.0.1'
s.date = '2009-01-18'

s.description = "Classy web-development dressed in a DSL"
Expand Down

0 comments on commit 611442f

Please sign in to comment.