diff --git a/CHANGELOG.md b/CHANGELOG.md index 6cb41e5a1..4966a15cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.3.4 (June 15th, 2011) +* fix a long standing bug where a signal would interrupt rb_thread_select and put the connection in a permanently broken state +* turn on casting in the ActiveRecord again, users can disable it if they need to for performance reasons + ## 0.3.3 (June 14th, 2011) * disable async support, and access to the underlying file descriptor under Windows. It's never worked reliably and ruby-core has a lot of work to do in order to make it possible. * added support for turning eager-casting off. This is especially useful in ORMs that will lazily cast values upon access. @@ -19,6 +23,10 @@ * BREAKING CHANGE: the ActiveRecord adapter has been pulled into Rails 3.1 and is no longer part of the gem * added Mysql2::Client.escape (class-level) for raw one-off non-encoding-aware escaping +## 0.2.9 (June 15th, 2011) +* fix a long standing bug where a signal would interrupt rb_thread_select and put the connection in a permanently broken state +* turn on casting in the ActiveRecord again, users can disable it if they need to for performance reasons + ## 0.2.8 (June 14th, 2011) * disable async support, and access to the underlying file descriptor under Windows. It's never worked reliably and ruby-core has a lot of work to do in order to make it possible. * added support for turning eager-casting off. This is especially useful in ORMs that will lazily cast values upon access. diff --git a/lib/mysql2/version.rb b/lib/mysql2/version.rb index 6209d49f8..195eb69f0 100644 --- a/lib/mysql2/version.rb +++ b/lib/mysql2/version.rb @@ -1,3 +1,3 @@ module Mysql2 - VERSION = "0.3.3" -end \ No newline at end of file + VERSION = "0.3.4" +end