diff --git a/CHANGELOG.md b/CHANGELOG.md index 48b28585e..c1185a63d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,11 @@ # Changelog -## In Git -* Avoid thread blocking on Ruby 1.9.x under Windows. Patch by Roger Pack. +## 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. +* added a warning if a 0.2.x release is being used with ActiveRecord 3.1 since both the 0.2.x releases and AR 3.1 have mysql2 adapters, we want you to use the one in AR 3.1 +* added Mysql2::Client.escape (class-level method) +* disabled eager-casting in the bundled ActiveRecord adapter (for Rails 3.0 or less) ## 0.2.7 (March 28th, 2011) * various fixes for em_mysql2 and fiber usage diff --git a/lib/mysql2/version.rb b/lib/mysql2/version.rb index 17aaa2910..68342e6d9 100644 --- a/lib/mysql2/version.rb +++ b/lib/mysql2/version.rb @@ -1,3 +1,3 @@ module Mysql2 - VERSION = "0.2.7" + VERSION = "0.2.8" end \ No newline at end of file