updating files for release
This commit is contained in:
parent
224e8eff66
commit
1c02820f4b
13
CHANGELOG.md
13
CHANGELOG.md
|
@ -2,6 +2,19 @@
|
|||
|
||||
## 0.1.9 (HEAD)
|
||||
* Support async ActiveRecord access with fibers and EventMachine (mperham)
|
||||
* string encoding support for 1.9, respecting Encoding.default_internal
|
||||
* added support for rake-compiler (tenderlove)
|
||||
* bugfixes for ActiveRecord driver
|
||||
** one minor bugfix for TimeZone support
|
||||
** fix the select_rows method to return what it should according to the docs (r-stu31)
|
||||
* Mysql2::Client#fields method added - returns the array of field names from a resultset, as strings
|
||||
* Sequel adapter
|
||||
** bugfix regarding sybolized field names (Eric Wong)
|
||||
** fix query logging in Sequel adapter
|
||||
* Lots of nice code cleanup (tenderlove)
|
||||
** Mysql2::Error definition moved to pure-Ruby
|
||||
** Mysql2::client#initialize definition moved to pure-Ruby
|
||||
** Mysql2::Result partially moved to pure-Ruby
|
||||
|
||||
## 0.1.8 (June 2nd, 2010)
|
||||
* fixes for AR adapter for timezone juggling
|
||||
|
|
|
@ -11,5 +11,5 @@ require 'mysql2/result'
|
|||
#
|
||||
# A modern, simple and very fast Mysql library for Ruby - binding to libmysql
|
||||
module Mysql2
|
||||
VERSION = "0.1.8"
|
||||
VERSION = "0.1.9"
|
||||
end
|
||||
|
|
|
@ -5,11 +5,11 @@
|
|||
|
||||
Gem::Specification.new do |s|
|
||||
s.name = %q{mysql2}
|
||||
s.version = "0.1.8"
|
||||
s.version = "0.1.9"
|
||||
|
||||
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
||||
s.authors = ["Brian Lopez"]
|
||||
s.date = %q{2010-07-06}
|
||||
s.date = %q{2010-07-17}
|
||||
s.email = %q{seniorlopez@gmail.com}
|
||||
s.extensions = ["ext/mysql2/extconf.rb"]
|
||||
s.extra_rdoc_files = [
|
||||
|
@ -34,7 +34,9 @@ Gem::Specification.new do |s|
|
|||
"ext/mysql2/mysql2_ext.h",
|
||||
"ext/mysql2/result.c",
|
||||
"ext/mysql2/result.h",
|
||||
"lib/active_record/connection_adapters/em_mysql2_adapter.rb",
|
||||
"lib/active_record/connection_adapters/mysql2_adapter.rb",
|
||||
"lib/active_record/fiber_patches.rb",
|
||||
"lib/arel/engines/sql/compilers/mysql2_compiler.rb",
|
||||
"lib/mysql2.rb",
|
||||
"lib/mysql2/client.rb",
|
||||
|
|
Loading…
Reference in New Issue