Title: [615] trunk/activerecord-jdbc: Prepare for 0.4 release
Revision
615
Author
nicksieger
Date
2007-06-07 21:44:13 -0400 (Thu, 07 Jun 2007)

Log Message

Prepare for 0.4 release

Modified Paths


Diff

Modified: trunk/activerecord-jdbc/History.txt (614 => 615)


--- trunk/activerecord-jdbc/History.txt	2007-06-07 21:32:25 UTC (rev 614)
+++ trunk/activerecord-jdbc/History.txt	2007-06-08 01:44:13 UTC (rev 615)
@@ -1,7 +1,10 @@
-== 0.3.2
+== 0.4
 
-- Shoring up PostgreSQL and HSQL
+- Release coincides with JRuby 1.0 release
+- Shoring up PostgreSQL (courtesy Dudley Flanders) and HSQL (courtesy Matthew Williams)
 - Fix timestamps on Oracle to use DATE (as everything else)
+- Derby fixes: Fix for open result set issue, better structure dump, quoting, column type changing
+- Sybase type recognition fix (courtesy Dean Mao)
 
 == 0.3.1
 

Modified: trunk/activerecord-jdbc/Rakefile (614 => 615)


--- trunk/activerecord-jdbc/Rakefile	2007-06-07 21:32:25 UTC (rev 614)
+++ trunk/activerecord-jdbc/Rakefile	2007-06-08 01:44:13 UTC (rev 615)
@@ -84,16 +84,15 @@
   Rake::Task['manifest'].invoke # Always regen manifest, so Hoe has up-to-date list of files
 
   require 'hoe'
-  Hoe.new("ActiveRecord-JDBC", "0.3.2") do |p|
+  Hoe.new("ActiveRecord-JDBC", "0.4") do |p|
     p.rubyforge_name = "jruby-extras"
     p.url = ""
     p.author = "Nick Sieger, Ola Bini and JRuby contributors"
-    p.email = "[EMAIL PROTECTED], [EMAIL PROTECTED]"
+    p.email = "[EMAIL PROTECTED], [EMAIL PROTECTED]"
     p.summary = "JDBC adapter for ActiveRecord, for use within JRuby on Rails."
     p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
     p.description = p.paragraphs_of('README.txt', 0...1).join("\n\n")
-    p.extra_deps.reject!{|d| d.first == "hoe"}
-  end
+  end.spec.dependencies.delete_if { |dep| dep.name == "hoe" }
 rescue LoadError
   puts "You really need Hoe installed to be able to package this gem"
 end
_______________________________________________
Jruby-extras-devel mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/jruby-extras-devel

Reply via email to