<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,5 +1,10 @@
 == 0.9.2
 
+- The main, highly awaited fix for this release is a solution to the
+  rake db:create/db:drop issue. The main change is a new 'jdbc' rails
+  generator that should be run once to prepare a Rails application to
+  use JDBC. The upside of this generator is that you no longer will
+  need to alter database.yml for JDBC. See the README.txt for details.
 - Cleanup and reconnect if errors occur during begin/rollback
   (Jean-Dominique Morani, Christian Seiler)
 - ACTIVERECORD_JDBC-1: Add #drop_database method for oracle (does the
@@ -22,6 +27,9 @@
 - Improves the SQLite adapter by fixing rename_column, change_column,
   change_column_default, changing remove_column, and adding
   remove_columns (Ryan Baumann)
+- More oracle love courtesy Ben Browning and Jens Himmelreich
+- JRUBY-3608: Add missing change_column_null method for postgres
+- JRUBY-3508: Fix quoting of integer and float columns
 
 == 0.9.1
 </diff>
      <filename>History.txt</filename>
    </modified>
    <modified>
      <diff>@@ -2,6 +2,13 @@ activerecord-jdbc-adapter is a database adapter for Rails' ActiveRecord
 component that can be used with JRuby[http://www.jruby.org/]. It allows use of
 virtually any JDBC-compliant database with your JRuby on Rails application.
 
+== Project Info
+
+* Mailing Lists: http://kenai.com/projects/activerecord-jdbc/lists
+* Issues: http://kenai.com/jira/browse/ACTIVERECORD_JDBC
+* Source: git://kenai.com/activerecord-jdbc~main 
+  	  git://github.com/nicksieger/activerecord-jdbc-adapter.git
+
 == Databases
 
 What's there, and what is not there:
@@ -49,13 +56,23 @@ To use activerecord-jdbc-adapter with JRuby on Rails:
   * derby (&lt;tt&gt;activerecord-jdbcderby-adapter&lt;/tt&gt;)
   * hsqldb (&lt;tt&gt;activerecord-jdbchsqldb-adapter&lt;/tt&gt;)
   * h2 (&lt;tt&gt;activerecord-jdbch2-adapter&lt;/tt&gt;)
+  * sqlite3 (&lt;tt&gt;activerecord-jdbcsqlite3-adapter&lt;/tt&gt;)
+
+2. Run the &quot;jdbc&quot; generator to prepare your Rails application for
+   JDBC.
+
+    jruby script/generate jdbc
+    
+   The initializer and rake task files generated are guarded such that
+   they won't be loaded if you still run your application un C Ruby.
 
-2. If you're using Rails 2.0, you may skip to the next step. For Rails prior to
-   version 2.0, you'll need to add one-time setup to your config/environment.rb
-   file in your Rails application. Add the following lines just before the
-   &lt;code&gt;Rails::Initializer&lt;/code&gt;. (If you're using activerecord-jdbc-adapter
-   under the old gem name used in versions 0.5 and earlier (ActiveRecord-JDBC),
-   replace 'activerecord-jdbc-adapter' with 'ActiveRecord-JDBC' below.)
+   Legacy: If you're using Rails prior to version 2.0, you'll need to
+   add one-time setup to your config/environment.rb file in your Rails
+   application. Add the following lines just before the
+   &lt;code&gt;Rails::Initializer&lt;/code&gt;. (If you're using
+   activerecord-jdbc-adapter under the old gem name used in versions
+   0.5 and earlier (ActiveRecord-JDBC), replace
+   'activerecord-jdbc-adapter' with 'ActiveRecord-JDBC' below.)
 
     if RUBY_PLATFORM =~ /java/
       require 'rubygems'
@@ -63,11 +80,11 @@ To use activerecord-jdbc-adapter with JRuby on Rails:
       require 'jdbc_adapter'
     end
 
-3. Configure your database.yml to use the &lt;code&gt;jdbc&lt;/code&gt; adapter. For mysql,
-   postgres, derby, oracle, hsqldb, h2, and informix you can simply configure
-   the database in the normal Rails style. If you use one of the convenience
-   'activerecord-jdbcXXX-adapter' adapters, be sure and put a 'jdbc' prefix in
-   front of the databas adapter name as below.
+3. Configure your database.yml in the normal Rails style. 
+
+   Legacy configuration: If you use one of the convenience
+   'activerecord-jdbcXXX-adapter' adapters, you can still put a 'jdbc'
+   prefix in front of the databas adapter name as below.
 
     development:
       adapter: jdbcmysql
@@ -76,8 +93,8 @@ To use activerecord-jdbc-adapter with JRuby on Rails:
       hostname: localhost
       database: weblog_development
 
-For other databases, you'll need to know the database driver class and URL.
-Example:
+   For other databases, you'll need to know the database driver class
+   and URL. Example:
 
     development:
       adapter: jdbc
@@ -126,6 +143,12 @@ The source for activerecord-jdbc-adapter is available using git.
 
   git clone git://github.com/nicksieger/activerecord-jdbc-adapter.git
 
+== Feedback
+
+Please file bug reports at
+http://kenai.com/jira/browse/ACTIVERECORD_JDBC. If you're not sure if
+something's a bug, feel free to pre-report it on the mailing lists.
+
 == Running AR-JDBC's Tests
 
 Drivers for 6 open-source databases are included. Provided you have MySQL</diff>
      <filename>README.txt</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>911ccee78213f68cf6c7f476e84edba02c51d675</id>
    </parent>
  </parents>
  <author>
    <name>Nick Sieger</name>
    <email>nick@nicksieger.com</email>
  </author>
  <url>http://github.com/nicksieger/activerecord-jdbc-adapter/commit/7ea0326a838c3ae381b2ad33d05816f8033b0ef8</url>
  <id>7ea0326a838c3ae381b2ad33d05816f8033b0ef8</id>
  <committed-date>2009-10-01T14:40:50-07:00</committed-date>
  <authored-date>2009-10-01T14:40:50-07:00</authored-date>
  <message>Fill in docs and details for the new generator and release</message>
  <tree>adcd6cb1d2a68ad4a9cc73cb35f2abfcba80ad30</tree>
  <committer>
    <name>Nick Sieger</name>
    <email>nick@nicksieger.com</email>
  </committer>
</commit>
