Skip to content

Commit

Permalink
version 2.9.12
Browse files Browse the repository at this point in the history
  • Loading branch information
tmtm committed Dec 17, 2013
1 parent 98a5f8c commit ede86e1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion lib/mysql.rb
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions 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']
Expand Down
4 changes: 2 additions & 2 deletions 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'
Expand Down
2 changes: 1 addition & 1 deletion spec/mysql_spec.rb
Expand Up @@ -13,7 +13,7 @@

describe 'Mysql::VERSION' do
it 'returns client version' do
Mysql::VERSION.should == 20911
Mysql::VERSION.should == 20912
end
end

Expand Down

0 comments on commit ede86e1

Please sign in to comment.