mirror of
https://github.com/sinatra/sinatra
synced 2023-03-27 23:18:01 -04:00
1.1.0 release
This commit is contained in:
parent
1648ebe987
commit
ad648be044
4 changed files with 7 additions and 6 deletions
2
CHANGES
2
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
|
||||
|
|
4
Rakefile
4
Rakefile
|
@ -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
|
||||
|
|
|
@ -7,7 +7,7 @@ require 'sinatra/showexceptions'
|
|||
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
|
||||
|
|
|
@ -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"
|
||||
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue