File tree 3 files changed +18
-3
lines changed 3 files changed +18
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## 0.1.9 (HEAD)
4
4
* Support async ActiveRecord access with fibers and EventMachine (mperham)
5
+ * string encoding support for 1.9, respecting Encoding.default_internal
6
+ * added support for rake-compiler (tenderlove)
7
+ * bugfixes for ActiveRecord driver
8
+ ** one minor bugfix for TimeZone support
9
+ ** fix the select_rows method to return what it should according to the docs (r-stu31)
10
+ * Mysql2::Client#fields method added - returns the array of field names from a resultset, as strings
11
+ * Sequel adapter
12
+ ** bugfix regarding sybolized field names (Eric Wong)
13
+ ** fix query logging in Sequel adapter
14
+ * Lots of nice code cleanup (tenderlove)
15
+ ** Mysql2::Error definition moved to pure-Ruby
16
+ ** Mysql2::client#initialize definition moved to pure-Ruby
17
+ ** Mysql2::Result partially moved to pure-Ruby
5
18
6
19
## 0.1.8 (June 2nd, 2010)
7
20
* fixes for AR adapter for timezone juggling
Original file line number Diff line number Diff line change 11
11
#
12
12
# A modern, simple and very fast Mysql library for Ruby - binding to libmysql
13
13
module Mysql2
14
- VERSION = "0.1.8 "
14
+ VERSION = "0.1.9 "
15
15
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.1.8 "
8
+ s . version = "0.1.9 "
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-07-06 }
12
+ s . date = %q{2010-07-17 }
13
13
14
14
s . extensions = [ "ext/mysql2/extconf.rb" ]
15
15
s . extra_rdoc_files = [
@@ -34,7 +34,9 @@ Gem::Specification.new do |s|
34
34
"ext/mysql2/mysql2_ext.h" ,
35
35
"ext/mysql2/result.c" ,
36
36
"ext/mysql2/result.h" ,
37
+ "lib/active_record/connection_adapters/em_mysql2_adapter.rb" ,
37
38
"lib/active_record/connection_adapters/mysql2_adapter.rb" ,
39
+ "lib/active_record/fiber_patches.rb" ,
38
40
"lib/arel/engines/sql/compilers/mysql2_compiler.rb" ,
39
41
"lib/mysql2.rb" ,
40
42
"lib/mysql2/client.rb" ,
You can’t perform that action at this time.
0 commit comments