<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,8 +1,21 @@
+== 0.3.0 2009-04-21
+
+* New features
+  * Added Ruby 1.9.1 and ruby-oci8 2.x support
+  * Use plsql.activerecord_class = ActiveRecord::Base to simplify usage with Rails
+* Improvements
+  * DATE to Time and DateTime conversion according to plsql.default_timezone (:local or :utc)
+    Use ActiveRecord::Base.default_timezone if plsql.activerecord_class=... is used
+  * Added BLOB data type support for input and output parameters and function return values
+  * Added support for private and public synonyms to functions/procedures and packages
+
 == 0.2.4 2009-03-06
+
 * Bug fixes
   * Fixed that procedures can be called with VARCHAR2 parameters with length up to 32767
 
 == 0.2.3 2008-10-17
+
 * Improvements
   * Added CLOB data type support for input and output parameters and function return values
     (both for MRI/OCI and JRuby/JDBC)</diff>
      <filename>History.txt</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-Copyright (c) 2008 Raimonds Simanovskis
+Copyright (c) 2009 Raimonds Simanovskis
 
 Permission is hereby granted, free of charge, to any person obtaining
 a copy of this software and associated documentation files (the</diff>
      <filename>License.txt</filename>
    </modified>
    <modified>
      <diff>@@ -9,6 +9,7 @@ lib/plsql/procedure.rb
 lib/plsql/schema.rb
 lib/ruby_plsql.rb
 lib/ruby_plsql/version.rb
+spec/plsql/connection_spec.rb
 spec/plsql/package_spec.rb
 spec/plsql/procedure_spec.rb
 spec/plsql/schema_spec.rb</diff>
      <filename>Manifest.txt</filename>
    </modified>
    <modified>
      <diff>@@ -5,8 +5,8 @@
 == DESCRIPTION:
 
 ruby-plsql gem provides simple Ruby API for calling Oracle PL/SQL procedures.
-ruby-plsql support both MRI and JRuby runtime environments.
-This gem requires ruby-oci8 library (if MRI is used) or Oracle JDBC driver (ojdbc14.jar) (if JRuby is used) for connection to Oracle database.
+ruby-plsql support both Ruby 1.8 MRI, Ruby 1.9.1 YARV and JRuby runtime environments.
+This gem requires ruby-oci8 library version 1.x (if MRI is used) or 2.x (if Ruby 1.9.1 is used) or Oracle JDBC driver (ojdbc14.jar) (if JRuby is used) for connection to Oracle database.
 
 See http://blog.rayapps.com for more information.
 
@@ -14,7 +14,7 @@ Look ar RSpec tests under spec directory for usage examples.
 
 == FEATURES/PROBLEMS:
 
-* Currently just NUMBER, VARCHAR2, DATE, TIMESTAMP, CLOB argument types are supported for PL/SQL procedures
+* Currently just NUMBER, VARCHAR2, DATE, TIMESTAMP, CLOB, BLOB argument types are supported for PL/SQL procedures
 
 == SYNOPSIS:
 
@@ -34,10 +34,19 @@ plsql.test_package.test_uppercase('xxx') # =&gt; 'XXX'
 
 plsql.logoff
 
+
+If using with Rails then include in initializer file:
+
+plsql.activerecord_class = ActiveRecord::Base
+
+and then you do not need to specify plsql.connection (this is also safer when ActiveRecord reestablishes connection to database).
+
 == REQUIREMENTS:
 
-MRI
+Ruby 1.8 MRI
 * Requires ruby-oci8 library to connect to Oracle (please use version 1.0.3 or later)
+Ruby 1.9.1
+* Requires ruby-oci8 library to connect to Oracle (please use version 2.0 or later)
 JRuby
 * Requires Oracle JDBC driver (ojdbc14.jar should be somewhere in PATH) to connect to Oracle
 
@@ -49,7 +58,7 @@ JRuby
 
 (The MIT License)
 
-Copyright (c) 2008 Raimonds Simanovskis
+Copyright (c) 2009 Raimonds Simanovskis
 
 Permission is hereby granted, free of charge, to any person obtaining
 a copy of this software and associated documentation files (the</diff>
      <filename>README.txt</filename>
    </modified>
    <modified>
      <diff>@@ -5,8 +5,8 @@ h1. Ruby API for PL/SQL
 h2. What
 
 ruby-plsql gem provides simple Ruby API for calling Oracle PL/SQL procedures.
-ruby-plsql support both MRI and JRuby runtime environments.
-This gem requires ruby-oci8 library (if MRI is used) or Oracle JDBC driver (ojdbc14.jar) (if JRuby is used) for connection to Oracle database.
+ruby-plsql support both Ruby 1.8 MRI, Ruby 1.9.1 YARV and JRuby runtime environments.
+This gem requires ruby-oci8 library version 1.x (if MRI is used) or 2.x (if Ruby 1.9.1 is used) or Oracle JDBC driver (ojdbc14.jar) (if JRuby is used) for connection to Oracle database.
 
 h2. Installing
 </diff>
      <filename>website/index.txt</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>setup.rb</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>e264a4f13d6aa3337b95b726d3442b7dc8629cd3</id>
    </parent>
  </parents>
  <author>
    <name>Raimonds Simanovskis</name>
    <email>raimonds.simanovskis@gmail.com</email>
  </author>
  <url>http://github.com/rsim/ruby-plsql/commit/947548bc8122f9bdb235706e7e4596fbfb41179b</url>
  <id>947548bc8122f9bdb235706e7e4596fbfb41179b</id>
  <committed-date>2009-04-21T03:00:25-07:00</committed-date>
  <authored-date>2009-04-21T03:00:25-07:00</authored-date>
  <message>Descriptions for version 0.3.0</message>
  <tree>31bce4370a8dbcb181be166d461f14edffd646e8</tree>
  <committer>
    <name>Raimonds Simanovskis</name>
    <email>raimonds.simanovskis@gmail.com</email>
  </committer>
</commit>
