Skip to content

Commit 2fd0369

Browse files
committed
bump files for 0.3.11 release
2 parents 1a23c25 + b3a220b commit 2fd0369

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## 0.3.11 (December 6th, 2011)
4+
* change mysql error detection strategy from using mysql_field_count to the more explicit mysql_errno
5+
* bugfix to avoid race condition with active connections that error out
6+
* revert back to using xmalloc/xfree for allocations
7+
* avoid potentially unsafe Ruby C API usage w/o GVL
8+
* reacquire GVL before retrying on EINTR on connect
9+
310
## 0.3.10 (November 9th, 2011)
411

512
## 0.3.9 (November 9th, 2011)
@@ -48,6 +55,13 @@
4855
* BREAKING CHANGE: the ActiveRecord adapter has been pulled into Rails 3.1 and is no longer part of the gem
4956
* added Mysql2::Client.escape (class-level) for raw one-off non-encoding-aware escaping
5057

58+
## 0.2.18 (December 6th, 2011)
59+
* change mysql error detection strategy from using mysql_field_count to the more explicit mysql_errno
60+
* bugfix to avoid race condition with active connections that error out
61+
* revert back to using xmalloc/xfree for allocations
62+
* avoid potentially unsafe Ruby C API usage w/o GVL
63+
* reacquire GVL before retrying on EINTR on connect
64+
5165
## 0.2.17 (November 9th, 2011)
5266

5367
## 0.2.16 (November 9th, 2011)

lib/mysql2/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Mysql2
2-
VERSION = "0.3.10"
2+
VERSION = "0.3.11"
33
end

0 commit comments

Comments
 (0)