Skip to content

Commit 1c02820

Browse files
committed
updating files for release
1 parent 224e8ef commit 1c02820

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
## 0.1.9 (HEAD)
44
* 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
518

619
## 0.1.8 (June 2nd, 2010)
720
* fixes for AR adapter for timezone juggling

lib/mysql2.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
#
1212
# A modern, simple and very fast Mysql library for Ruby - binding to libmysql
1313
module Mysql2
14-
VERSION = "0.1.8"
14+
VERSION = "0.1.9"
1515
end

mysql2.gemspec

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55

66
Gem::Specification.new do |s|
77
s.name = %q{mysql2}
8-
s.version = "0.1.8"
8+
s.version = "0.1.9"
99

1010
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
1111
s.authors = ["Brian Lopez"]
12-
s.date = %q{2010-07-06}
12+
s.date = %q{2010-07-17}
1313
s.email = %q{[email protected]}
1414
s.extensions = ["ext/mysql2/extconf.rb"]
1515
s.extra_rdoc_files = [
@@ -34,7 +34,9 @@ Gem::Specification.new do |s|
3434
"ext/mysql2/mysql2_ext.h",
3535
"ext/mysql2/result.c",
3636
"ext/mysql2/result.h",
37+
"lib/active_record/connection_adapters/em_mysql2_adapter.rb",
3738
"lib/active_record/connection_adapters/mysql2_adapter.rb",
39+
"lib/active_record/fiber_patches.rb",
3840
"lib/arel/engines/sql/compilers/mysql2_compiler.rb",
3941
"lib/mysql2.rb",
4042
"lib/mysql2/client.rb",

0 commit comments

Comments
 (0)