update files for 0.1.6 release
This commit is contained in:
parent
1895401272
commit
d67e7eda20
|
@ -1,5 +1,10 @@
|
|||
# Changelog
|
||||
|
||||
## 0.1.6 (May 14th, 2010)
|
||||
* more fixes to the AR adapter related to casting
|
||||
* add missing index creation override method to AR adapter
|
||||
* added sql_state and error_number methods to the Mysql2::Error exception class
|
||||
|
||||
## 0.1.5 (May 12th, 2010)
|
||||
* quite a few patches from Eric Wong related to thread-safety, non-blocking I/O and general cleanup
|
||||
** wrap mysql_real_connect with rb_thread_blocking_region
|
||||
|
|
|
@ -109,7 +109,7 @@ The specs pass on my system (SL 10.6.3, x86_64) in these rubies:
|
|||
* ree-1.8.7-2010.01
|
||||
* 1.9.1-p378
|
||||
* ruby-trunk
|
||||
* rbx-head
|
||||
* rbx-head - broken at the moment, working with the rbx team for a solution
|
||||
|
||||
The ActiveRecord driver should work on 2.3.5 and 3.0
|
||||
|
||||
|
|
|
@ -5,5 +5,5 @@ require 'mysql2_ext'
|
|||
#
|
||||
# A modern, simple and very fast Mysql library for Ruby - binding to libmysql
|
||||
module Mysql2
|
||||
VERSION = "0.1.5"
|
||||
VERSION = "0.1.6"
|
||||
end
|
|
@ -5,11 +5,11 @@
|
|||
|
||||
Gem::Specification.new do |s|
|
||||
s.name = %q{mysql2}
|
||||
s.version = "0.1.5"
|
||||
s.version = "0.1.6"
|
||||
|
||||
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
||||
s.authors = ["Brian Lopez"]
|
||||
s.date = %q{2010-05-12}
|
||||
s.date = %q{2010-05-14}
|
||||
s.email = %q{seniorlopez@gmail.com}
|
||||
s.extensions = ["ext/extconf.rb"]
|
||||
s.extra_rdoc_files = [
|
||||
|
|
Loading…
Reference in New Issue