From ede86e1a28ba7ed2d04b9f7feca3fdaded17b2cf Mon Sep 17 00:00:00 2001 From: TOMITA Masahiro Date: Tue, 17 Dec 2013 18:25:01 +0900 Subject: [PATCH] version 2.9.12 --- lib/mysql.rb | 2 +- ruby-mysql-ext.gemspec | 4 ++-- ruby-mysql.gemspec | 4 ++-- spec/mysql_spec.rb | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/mysql.rb b/lib/mysql.rb index 13b3710..ad29eae 100644 --- a/lib/mysql.rb +++ b/lib/mysql.rb @@ -21,7 +21,7 @@ class Mysql rescue LoadError end - VERSION = 20911 # Version number of this library + VERSION = 20912 # Version number of this library MYSQL_UNIX_PORT = "/tmp/mysql.sock" # UNIX domain socket filename MYSQL_TCP_PORT = 3306 # TCP socket port number diff --git a/ruby-mysql-ext.gemspec b/ruby-mysql-ext.gemspec index 3171d96..9d03fd9 100644 --- a/ruby-mysql-ext.gemspec +++ b/ruby-mysql-ext.gemspec @@ -1,9 +1,9 @@ Gem::Specification.new do |s| s.name = 'ruby-mysql-ext' - s.version = '2.9.11' + s.version = '2.9.12' s.summary = 'MySQL connector with extension' s.authors = ['Tomita Masahiro'] - s.date = '2013-04-09' + s.date = '2013-12-17' s.description = 'This is MySQL connector with C extension.' s.email = 'tommy@tmtm.org' s.extensions = ['ext/mysql/extconf.rb'] diff --git a/ruby-mysql.gemspec b/ruby-mysql.gemspec index 967d8ea..8a471ef 100644 --- a/ruby-mysql.gemspec +++ b/ruby-mysql.gemspec @@ -1,9 +1,9 @@ Gem::Specification.new do |s| s.name = 'ruby-mysql' - s.version = '2.9.11' + s.version = '2.9.12' s.summary = 'MySQL connector' s.authors = ['Tomita Masahiro'] - s.date = '2013-04-09' + s.date = '2013-12-17' s.description = 'This is MySQL connector. pure Ruby version' s.email = 'tommy@tmtm.org' s.homepage = 'http://github.com/tmtm/ruby-mysql' diff --git a/spec/mysql_spec.rb b/spec/mysql_spec.rb index d8a1464..9168aff 100644 --- a/spec/mysql_spec.rb +++ b/spec/mysql_spec.rb @@ -13,7 +13,7 @@ describe 'Mysql::VERSION' do it 'returns client version' do - Mysql::VERSION.should == 20911 + Mysql::VERSION.should == 20912 end end