Skip to content

Commit 631384e

Browse files
committed
version 2.10.0
1 parent 4124bec commit 631384e

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

README.rdoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ MySQL connector for Ruby.
2020

2121
* MySQL/Ruby 2.8.x とほぼ互換があります。
2222

23+
* MySQL 8.0 には対応していません。
24+
2325
== Synopsis
2426

2527
使用例:

lib/mysql.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class Mysql
2121
rescue LoadError
2222
end
2323

24-
VERSION = 20913 # Version number of this library
24+
VERSION = 21000 # Version number of this library
2525
MYSQL_UNIX_PORT = "/tmp/mysql.sock" # UNIX domain socket filename
2626
MYSQL_TCP_PORT = 3306 # TCP socket port number
2727

ruby-mysql-ext.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
Gem::Specification.new do |s|
22
s.name = 'ruby-mysql-ext'
3-
s.version = '2.9.14'
3+
s.version = '2.10.0'
44
s.summary = 'MySQL connector with extension'
55
s.authors = ['Tomita Masahiro']
6-
s.date = '2015-12-30'
6+
s.date = '2021-10-23'
77
s.description = 'This is MySQL connector with C extension.'
88
s.email = '[email protected]'
99
s.extensions = ['ext/mysql/extconf.rb']

ruby-mysql.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
Gem::Specification.new do |s|
22
s.name = 'ruby-mysql'
3-
s.version = '2.9.14'
3+
s.version = '2.10.0'
44
s.summary = 'MySQL connector'
55
s.authors = ['Tomita Masahiro']
6-
s.date = '2015-12-30'
6+
s.date = '2021-10-23'
77
s.description = 'This is MySQL connector. pure Ruby version'
88
s.email = '[email protected]'
99
s.homepage = 'http://github.com/tmtm/ruby-mysql'

test/test_mysql.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
class TestMysql < Test::Unit::TestCase
2121
sub_test_case 'Mysql::VERSION' do
2222
test 'returns client version' do
23-
assert{ Mysql::VERSION == 20913 }
23+
assert{ Mysql::VERSION == 21000 }
2424
end
2525
end
2626

0 commit comments

Comments
 (0)