Skip to content

Commit

Permalink
1.0.1 release to fix 1.0.0's packaging snafu
Browse files Browse the repository at this point in the history
  • Loading branch information
nicksieger committed May 18, 2010
1 parent 34b527b commit 20d93eb
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
4 changes: 4 additions & 0 deletions History.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
== 1.0.1

- 1.0.0 release had a packaging snafu. Too many releases in too short a timespan

== 1.0.0

- Might as well go to 1.0. We've been used in production code for a
Expand Down
3 changes: 3 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,9 @@ task :gem => ["target/jruby-rack-#{JRuby::Rack::VERSION}.jar",
"target/gem/lib/jruby/rack/version.rb"] do |t|
cp FileList["History.txt", "LICENSE.txt", "README.md"], "target/gem"
cp t.prerequisites.first, "target/gem/lib"
if (jars = FileList["target/gem/lib/*.jar"].to_a).size > 1
abort "Too many jars! #{jars.map{|j| File.basename(j)}.inspect}\nRun a clean build first"
end
Dir.chdir("target/gem") do
gemspec = Gem::Specification.new do |s|
s.name = %q{jruby-rack}
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.jruby.rack</groupId>
<artifactId>jruby-rack</artifactId>
<version>1.0.1.dev-SNAPSHOT</version>
<version>1.0.1</version>
<name>JRuby-Rack</name>
<url>http://jruby-rack.kenai.com/</url>
<description>
Expand Down
2 changes: 1 addition & 1 deletion src/main/ruby/jruby/rack/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@

module JRuby
module Rack
VERSION = "1.0.1.dev-SNAPSHOT"
VERSION = "1.0.1"
end
end

0 comments on commit 20d93eb

Please sign in to comment.