Skip to content

Commit

Permalink
updating files for release
Browse files Browse the repository at this point in the history
  • Loading branch information
brianmario committed Jul 18, 2010
1 parent 224e8ef commit 1c02820
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/mysql2.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
#
# A modern, simple and very fast Mysql library for Ruby - binding to libmysql
module Mysql2
VERSION = "0.1.8"
VERSION = "0.1.9"
end
6 changes: 4 additions & 2 deletions mysql2.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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{[email protected]}
s.extensions = ["ext/mysql2/extconf.rb"]
s.extra_rdoc_files = [
Expand All @@ -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",
Expand Down

0 comments on commit 1c02820

Please sign in to comment.