Skip to content

Commit e74645e

Browse files
committed
latest from 0.2.x
2 parents 5bc5cd2 + 130c257 commit e74645e

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

CHANGELOG.md

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

3+
## 0.3.6 (June 17th, 2011)
4+
* fix bug in Time/DateTime range detection
5+
* (win32) fix bug where the Mysql2::Client object wasn't cleaned up properly if interrupted during a query
6+
* add Mysql2::Result#count (aliased as size) to get the row count for the dataset
7+
this can be especially helpful if you want to get the number of rows without having to inflate
8+
the entire dataset into ruby (since this happens lazily)
9+
310
## 0.3.5 (June 15th, 2011)
411
* bug fix for Time/DateTime usage depending on 32/64bit Ruby
512

@@ -26,6 +33,16 @@
2633
* BREAKING CHANGE: the ActiveRecord adapter has been pulled into Rails 3.1 and is no longer part of the gem
2734
* added Mysql2::Client.escape (class-level) for raw one-off non-encoding-aware escaping
2835

36+
## 0.2.11 (June 17th, 2011)
37+
* fix bug in Time/DateTime range detection
38+
* (win32) fix bug where the Mysql2::Client object wasn't cleaned up properly if interrupted during a query
39+
* add Mysql2::Result#count (aliased as size) to get the row count for the dataset
40+
this can be especially helpful if you want to get the number of rows without having to inflate
41+
the entire dataset into ruby (since this happens lazily)
42+
43+
## 0.2.10 (June 15th, 2011)
44+
* bug fix for Time/DateTime usage depending on 32/64bit Ruby
45+
2946
## 0.2.9 (June 15th, 2011)
3047
* fix a long standing bug where a signal would interrupt rb_thread_select and put the connection in a permanently broken state
3148
* turn on casting in the ActiveRecord again, users can disable it if they need to for performance reasons

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.5"
2+
VERSION = "0.3.6"
33
end

0 commit comments

Comments
 (0)