File tree 3 files changed +12
-3
lines changed
3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 0.2.4 (September 17th, 2010)
4
+ * a few patches for win32 support from Luis Lavena - thanks man!
5
+ * bugfix from Eric Wong to avoid a potential stack overflow during Mysql2::Client#escape
6
+ * added the ability to turn internal row caching on/off via the : cache_rows => true/false option
7
+ * a couple of small patches for rbx compatibility
8
+ * set IndexDefinition#length in AR adapter - Kouhei Yanagita
< [email protected] >
9
+ * fix a long-standing data corruption bug - thank you thank you thank you to @joedamato (http://github.com/ice799 )
10
+ * bugfix from calling mysql_close on a closed/freed connection surfaced by the above fix
11
+
3
12
## 0.2.3 (August 20th, 2010)
4
13
* connection flags can now be passed to the constructor via the : flags key
5
14
* switch AR adapter connection over to use FOUND_ROWS option
Original file line number Diff line number Diff line change 12
12
#
13
13
# A modern, simple and very fast Mysql library for Ruby - binding to libmysql
14
14
module Mysql2
15
- VERSION = "0.2.3 "
15
+ VERSION = "0.2.4 "
16
16
end
Original file line number Diff line number Diff line change 5
5
6
6
Gem ::Specification . new do |s |
7
7
s . name = %q{mysql2}
8
- s . version = "0.2.3 "
8
+ s . version = "0.2.4 "
9
9
10
10
s . required_rubygems_version = Gem ::Requirement . new ( ">= 0" ) if s . respond_to? :required_rubygems_version=
11
11
s . authors = [ "Brian Lopez" ]
12
- s . date = %q{2010-08-20 }
12
+ s . date = %q{2010-09-17 }
13
13
14
14
s . extensions = [ "ext/mysql2/extconf.rb" ]
15
15
s . extra_rdoc_files = [
You can’t perform that action at this time.
0 commit comments