<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,3 +1,29 @@
+== 0.9.2 &quot;appropriate response to reality&quot; 2008-03-24
+* have select_control use database value as the default selected value
+* windows support in rakefile
+* Session should respond to each_with_index
+* merb-gen fix for namespaced resources
+* fix rakefiles in plugins. Fix merb_sequel and Merb-datamapper and merb_activerecord to use autoflush logging so log messages are immediately flushed instead of showing nothing.
+* Updated format of migrations to ActiveRecord 2.0 style
+* Minor cleanup and comment about using the assistance instead of my custom extensions...
+* Time_ago_in_words and spec for her
+* Initial stab at some date_time helpers up in here...
+* Implementation of IRB sandbox methods
+* added better error message when a database can't be created
+* fixed rake db:test:clone
+* fixed bug when using custom charset and collation in database.yml
+* Merb.logger is now correctly setup from Merb::Config for :merb_start task
+* Make helper specs pass again. NOTE: Config specs do not work.
+* ORM plugins (AR, DM, Sequel) now hook into the BootLoader
+* cleaned up the existing rake tasks + added rake db:drop:all, rake db:migrate:redo, rake db:migrate:reset + rake db:reset now drops your dbs, recreate them and load schema.rb + rake db:rollback + rake db:abort_if_pending_migrations
+* Changed merb active record rake tasks to create utf8 dabases when using rake db:create / db:reset Added rake db:charset rake db:collation Support for charset/collation arguments: rake db:create CHARSET=latin1, COLLATION=latin1_bin
+* cleaned up the existing rake tasks + added rake db:drop:all, rake db:migrate:redo, rake db:migrate:reset + rake db:reset now drops your dbs, recreate them and load schema.rb + rake db:rollback + rake db:abort_if_pending_migrations
+* Changed merb active record rake tasks to create utf8 dabases when using rake db:create / db:reset
+* fix rakefile to not build merb_rspec as it is in -core now.
+* Using autoload to connect to the database on the first use of DataMapper
+* Corrects some issues with merb_test_unit
+* Adding updated_at for DM sessions.
+
 == 0.9.1 &quot;Some are half-wild, and some are just outlaws.&quot; 2008-02-29
 * merb_activerecord: updated render syntax in new action of db plugin
   resource_controller controller templates.
@@ -29,4 +55,4 @@
 * merb_test_unit: Adding rspec dependency to merb_rspec, removing merb-test
   references in merb_test_unit
 * merb_test_unit: moving plugin rakefiles into a plugin name parent folder
-* merb_test_unit: Normalize calls to Merb.start
\ No newline at end of file
+* merb_test_unit: Normalize calls to Merb.start</diff>
      <filename>CHANGELOG</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@ require 'rake/gempackagetask'
 
 PLUGIN = &quot;merb_activerecord&quot;
 NAME = &quot;merb_activerecord&quot;
-VERSION = &quot;0.9.1&quot;
+VERSION = &quot;0.9.2&quot;
 AUTHOR = &quot;Duane Johnson&quot;
 EMAIL = &quot;canadaduane@gmail.com&quot;
 HOMEPAGE = &quot;http://merbivore.com&quot;
@@ -20,7 +20,7 @@ spec = Gem::Specification.new do |s|
   s.author = AUTHOR
   s.email = EMAIL
   s.homepage = HOMEPAGE
-  s.add_dependency(&quot;merb-core&quot;, &quot;&gt;= 0.9.1&quot;)
+  s.add_dependency(&quot;merb-core&quot;, &quot;&gt;= 0.9.2&quot;)
   s.require_path = &quot;lib&quot;
   s.autorequire = PLUGIN
   s.files = %w(LICENSE README Rakefile TODO) + Dir.glob(&quot;{lib,specs,activerecord_generators}/**/*&quot;)</diff>
      <filename>merb_activerecord/Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@ require 'rake/gempackagetask'
 
 PLUGIN = &quot;merb_datamapper&quot;
 NAME = &quot;merb_datamapper&quot;
-VERSION = &quot;0.9.1&quot;
+VERSION = &quot;0.9.2&quot;
 AUTHOR = &quot;Jason Toy&quot;
 EMAIL = &quot;jtoy@rubynow.com&quot;
 HOMEPAGE = &quot;http://merbivore.com&quot;
@@ -20,7 +20,7 @@ spec = Gem::Specification.new do |s|
   s.author = AUTHOR
   s.email = EMAIL
   s.homepage = HOMEPAGE
-  s.add_dependency('merb-core', '&gt;= 0.9.1')
+  s.add_dependency('merb-core', '&gt;= 0.9.2')
   s.add_dependency('datamapper', '&gt;= 0.2.3')
   s.require_path = 'lib'
   s.autorequire = PLUGIN</diff>
      <filename>merb_datamapper/Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -5,7 +5,7 @@ require 'spec/rake/spectask'
 
 PLUGIN = &quot;merb_helpers&quot;
 NAME = &quot;merb_helpers&quot;
-VERSION = &quot;0.9.1&quot;
+VERSION = &quot;0.9.2&quot;
 AUTHOR = &quot;Yehuda Katz&quot;
 EMAIL = &quot;wycats@gmail.com&quot;
 HOMEPAGE = &quot;http://merb.rubyforge.org/&quot;
@@ -26,7 +26,7 @@ spec = Gem::Specification.new do |s|
   s.author = AUTHOR
   s.email = EMAIL
   s.homepage = HOMEPAGE
-  s.add_dependency(&quot;merb-core&quot;, &quot;&gt;=0.9.1&quot;)
+  s.add_dependency(&quot;merb-core&quot;, &quot;&gt;=0.9.2&quot;)
   s.require_path = 'lib'
   s.autorequire = PLUGIN
   s.files = %w(LICENSE README Rakefile TODO) + Dir.glob(&quot;{lib,specs}/**/*&quot;)</diff>
      <filename>merb_helpers/Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -4,7 +4,7 @@ require 'spec/rake/spectask'
 
 PLUGIN = &quot;merb_param_protection&quot;
 NAME = &quot;merb_param_protection&quot;
-VERSION = &quot;0.9.1&quot;
+VERSION = &quot;0.9.2&quot;
 AUTHOR = &quot;Lance Carlson&quot;
 EMAIL = &quot;lancecarlson@gmail.com&quot;
 HOMEPAGE = &quot;http://merb.devjavu.com&quot;
@@ -21,7 +21,7 @@ spec = Gem::Specification.new do |s|
   s.author = AUTHOR
   s.email = EMAIL
   #s.homepage = HOMEPAGE
-  s.add_dependency('merb', '&gt;= 0.9.1')
+  s.add_dependency('merb', '&gt;= 0.9.2')
   s.require_path = 'lib'
   s.autorequire = PLUGIN
   s.files = %w(LICENSE README Rakefile TODO) + Dir.glob(&quot;{lib,specs}/**/*&quot;)</diff>
      <filename>merb_param_protection/Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@ require &quot;rake/gempackagetask&quot;
 
 PLUGIN   = &quot;merb_sequel&quot;
 NAME     = &quot;merb_sequel&quot;
-VERSION  = &quot;0.9.1&quot;
+VERSION  = &quot;0.9.2&quot;
 AUTHOR   = &quot;Wayne E. Seguin, Lance Carlson&quot;
 EMAIL    = &quot;wayneeseguin@gmail.com, lancecarlson@gmail.com&quot;
 HOMEPAGE = &quot;http://merb-plugins.rubyforge.org/merb_sequel/&quot;
@@ -24,7 +24,7 @@ specification = Gem::Specification.new do |spec|
   spec.extra_rdoc_files = [&quot;README&quot;, &quot;LICENSE&quot;, 'TODO']
   # Dependencies
   #spec.add_dependency(&quot;merb&quot;,         &quot;&gt;= 0.9&quot;)
-  spec.add_dependency(&quot;merb-core&quot;, &quot;&gt;= 0.9.1&quot;)    # This will probably only be temporary until there is an official merb gem greater than 0.9
+  spec.add_dependency(&quot;merb-core&quot;, &quot;&gt;= 0.9.2&quot;)    # This will probably only be temporary until there is an official merb gem greater than 0.9
   spec.add_dependency(&quot;sequel&quot;,       &quot;&gt;= 1.0.0&quot;)
   spec.add_dependency(&quot;sequel_model&quot;, &quot;&gt;= 0.3.3&quot;)
   spec.files = %w(LICENSE README Rakefile TODO) + Dir.glob(&quot;{lib,specs,sequel_generators}/**/*&quot;)</diff>
      <filename>merb_sequel/Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@ require 'rake/gempackagetask'
 
 PLUGIN = &quot;merb_stories&quot;
 NAME = &quot;merb_stories&quot;
-VERSION = &quot;0.9.1&quot;
+VERSION = &quot;0.9.2&quot;
 AUTHOR = &quot;Yehuda Katz&quot;
 EMAIL = &quot;ykatz@engineyard.com&quot;
 HOMEPAGE = &quot;http://merb-plugins.rubyforge.org/merb-test/&quot;
@@ -20,7 +20,7 @@ spec = Gem::Specification.new do |s|
   s.author = AUTHOR
   s.email = EMAIL
   s.homepage = HOMEPAGE
-  s.add_dependency('merb-core', '&gt;= 0.9.1')
+  s.add_dependency('merb-core', '&gt;= 0.9.2')
   s.add_dependency('rspec', '&gt;= 1.1.3')
   s.require_path = 'lib'
   s.autorequire = PLUGIN</diff>
      <filename>merb_stories/Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@ require 'rake/gempackagetask'
 
 PLUGIN = &quot;merb_test_unit&quot;
 NAME = &quot;merb_test_unit&quot;
-VERSION = &quot;0.9.1&quot;
+VERSION = &quot;0.9.2&quot;
 AUTHOR = &quot;Yehuda Katz&quot;
 EMAIL = &quot;ykatz@engineyard.com&quot;
 HOMEPAGE = &quot;http://merb-plugins.rubyforge.org/merb-test_unit/&quot;
@@ -20,7 +20,7 @@ spec = Gem::Specification.new do |s|
   s.author = AUTHOR
   s.email = EMAIL
   s.homepage = HOMEPAGE
-  s.add_dependency('merb-core', '&gt;= 0.9.1')
+  s.add_dependency('merb-core', '&gt;= 0.9.2')
   s.require_path = 'lib'
   s.autorequire = PLUGIN
   s.files = %w(LICENSE README Rakefile TODO) + Dir.glob(&quot;{lib,test_unit_generators}/**/*&quot;)</diff>
      <filename>merb_test_unit/Rakefile</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>969f44bd2efd5c8af26aa7a93a24e63711073d0b</id>
    </parent>
  </parents>
  <author>
    <name>Michael D. Ivey</name>
    <email>ivey@gweezlebur.com</email>
  </author>
  <url>http://github.com/gwynm/merb-plugins/commit/65c1ccb8a2a02a7c3c36720244b560d728daa3a6</url>
  <id>65c1ccb8a2a02a7c3c36720244b560d728daa3a6</id>
  <committed-date>2008-03-24T20:52:05-07:00</committed-date>
  <authored-date>2008-03-24T20:52:05-07:00</authored-date>
  <message>Prep 0.9.2</message>
  <tree>fbc383e2cfe0ceea261151cec4c2806be869a857</tree>
  <committer>
    <name>Michael D. Ivey</name>
    <email>ivey@gweezlebur.com</email>
  </committer>
</commit>
