Skip to content

Commit

Permalink
1.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rkh committed Oct 24, 2010
1 parent 1648ebe commit ad648be
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGES
@@ -1,4 +1,4 @@
= 1.1 / Not Yet Released
= 1.1.0 / 2010-10-24

* Before and after filters now support pattern matching, including the
ability to use captures: "before('/user/:name') { |name| ... }". This
Expand Down
4 changes: 2 additions & 2 deletions Rakefile
Expand Up @@ -130,8 +130,8 @@ if defined?(Gem)
gem install #{package('.gem')} --local &&
gem push #{package('.gem')} &&
git add sinatra.gemspec &&
git commit --allow-empty -m 'Release #{source_version}' &&
git tag -s #{source_version} -m 'Release #{source_version}' &&
git commit --allow-empty -m '#{source_version} release' &&
git tag -s #{source_version} -m '#{source_version} release' &&
git push && (git push sinatra || true) &&
git push --tags && (git push sinatra --tags || true)
SH
Expand Down
2 changes: 1 addition & 1 deletion lib/sinatra/base.rb
Expand Up @@ -7,7 +7,7 @@
require 'tilt'

module Sinatra
VERSION = '1.1.b'
VERSION = '1.1.0'

# The request object. See Rack::Request for more info:
# http://rack.rubyforge.org/doc/classes/Rack/Request.html
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 = '1.1.b'
s.date = '2010-10-23'
s.version = '1.1.0'
s.date = '2010-10-24'

s.description = "Classy web-development dressed in a DSL"
s.summary = "Classy web-development dressed in a DSL"
Expand All @@ -23,6 +23,7 @@ Gem::Specification.new do |s|
README.hu.rdoc
README.jp.rdoc
README.rdoc
README.zh.rdoc
Rakefile
lib/sinatra.rb
lib/sinatra/base.rb
Expand Down

0 comments on commit ad648be

Please sign in to comment.