jdbc-mysql 9.1.0 → 9.1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6b504a517115397cc7b8c9c057bd8844dc5520a4286a1558c623e45f3fd3db17
4
- data.tar.gz: abdd974af86df75faa254527664033d55c6c4de18eff376c3fa43c93174d7601
3
+ metadata.gz: 21e3b5c217ff8be5342e57f082245ce62279235fdfb680fba12d190c143102db
4
+ data.tar.gz: a2bb3363694b978cc361d27a2ca00e6e568121f81fbe5aeee0b4ce993b566920
5
5
  SHA512:
6
- metadata.gz: f6f14de2b7204593d039b01a75fd19892d2b84ad6d7e3816606d4c965d419323107fc49ace8d3af0f775168533b079eb0d6ecdd60c3e830f6a278ea58b7981f9
7
- data.tar.gz: 781d22431fafd93f53e7fd71fc6066f07fde980bdce4257b9c74bb9612f8f50834bc58dcb446fe3041d8fdf265d5441fd81d9908605bda8867de96ea08df2b8a
6
+ metadata.gz: 7f9e0a99e2f91935860ca7b42c9f4df71031bfccbefb52665366084d02320866373f027f0f057ace494cb1949ad047b786aaf238feb46cf442a35eb45557ff0b
7
+ data.tar.gz: b57f862aa0248672fdef27358c5cb297879019aececef73642389824b8081df26245a0562a1ac5b494b9d1405801ca587cb9cc7dfeb82825459db1f016a7443c
@@ -1,6 +1,6 @@
1
1
  module Jdbc
2
2
  module MySQL
3
3
  DRIVER_VERSION = '9.1.0'
4
- VERSION = DRIVER_VERSION
4
+ VERSION = DRIVER_VERSION + '.1'
5
5
  end
6
6
  end
data/lib/jdbc/mysql.rb CHANGED
@@ -5,7 +5,7 @@ module Jdbc
5
5
  module MySQL
6
6
 
7
7
  def self.driver_jar
8
- "mysql-connector-java-#{DRIVER_VERSION}.jar"
8
+ "mysql-connector-j-#{DRIVER_VERSION}.jar"
9
9
  end
10
10
 
11
11
  def self.load_driver(method = :load)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jdbc-mysql
3
3
  version: !ruby/object:Gem::Version
4
- version: 9.1.0
4
+ version: 9.1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nick Sieger, Ola Bini, Karol Bucek and JRuby contributors
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-10-29 00:00:00.000000000 Z
11
+ date: 2024-10-30 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Install this gem `require 'jdbc/mysql'` and invoke `Jdbc::MySQL.load_driver`
14
14
  within JRuby to load the driver.
@@ -46,7 +46,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
46
46
  - !ruby/object:Gem::Version
47
47
  version: '0'
48
48
  requirements: []
49
- rubygems_version: 3.5.11
49
+ rubygems_version: 3.5.21
50
50
  signing_key:
51
51
  specification_version: 4
52
52
  summary: JDBC driver for JRuby and MySQL (used by ActiveRecord-JDBC).