Skip to content

Commit d67e7ed

Browse files
committed
update files for 0.1.6 release
1 parent 1895401 commit d67e7ed

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 0.1.6 (May 14th, 2010)
4+
* more fixes to the AR adapter related to casting
5+
* add missing index creation override method to AR adapter
6+
* added sql_state and error_number methods to the Mysql2::Error exception class
7+
38
## 0.1.5 (May 12th, 2010)
49
* quite a few patches from Eric Wong related to thread-safety, non-blocking I/O and general cleanup
510
** wrap mysql_real_connect with rb_thread_blocking_region

README.rdoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ The specs pass on my system (SL 10.6.3, x86_64) in these rubies:
109109
* ree-1.8.7-2010.01
110110
* 1.9.1-p378
111111
* ruby-trunk
112-
* rbx-head
112+
* rbx-head - broken at the moment, working with the rbx team for a solution
113113

114114
The ActiveRecord driver should work on 2.3.5 and 3.0
115115

lib/mysql2.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
#
66
# A modern, simple and very fast Mysql library for Ruby - binding to libmysql
77
module Mysql2
8-
VERSION = "0.1.5"
8+
VERSION = "0.1.6"
99
end

mysql2.gemspec

+2-2
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.5"
8+
s.version = "0.1.6"
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-05-12}
12+
s.date = %q{2010-05-14}
1313
s.email = %q{seniorlopez@gmail.com}
1414
s.extensions = ["ext/extconf.rb"]
1515
s.extra_rdoc_files = [

0 commit comments

Comments
 (0)