about summary refs log tree commit homepage
diff options
context:
space:
mode:
-rw-r--r--History.txt4
-rw-r--r--Rakefile3
2 files changed, 6 insertions, 1 deletions
diff --git a/History.txt b/History.txt
index 45ee278..9ec159b 100644
--- a/History.txt
+++ b/History.txt
@@ -1,3 +1,7 @@
+=== 0.1.1 / 2009-04-06
+
+* add Sinatra dependency
+
 === 0.1.0 / 2009-04-04
 
 * initial
diff --git a/Rakefile b/Rakefile
index dea1390..16fd51a 100644
--- a/Rakefile
+++ b/Rakefile
@@ -3,9 +3,10 @@ require 'hoe'
 
 readme = File.readlines('README.txt')
 
-Hoe.new('local-openid', '0.1.0') do |p|
+Hoe.new('local-openid', '0.1.1') do |p|
    p.rubyforge_name = 'qrp'
    p.developer('Eric Wong', 'normalperson@yhbt.net')
    p.summary = readme[0].split(/\s*:\s*/)[1]
    p.url = 'http://bogomips.org/local-openid'
+   p.extra_deps << [ 'sinatra', '>= 0.9' ]
 end