Skip to content

Commit

Permalink
latest from 0.2.x
Browse files Browse the repository at this point in the history
  • Loading branch information
brianmario committed Jun 16, 2011
2 parents 0a86c35 + 9001cf5 commit 4b1d0c1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions lib/mysql2/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Mysql2
VERSION = "0.3.3"
end
VERSION = "0.3.4"
end

0 comments on commit 4b1d0c1

Please sign in to comment.