jdbc-mariadb 1.7.3 → 2.0.3

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
  SHA1:
3
- metadata.gz: 98b3afb51607a6cadf7cc9a1686ca9ffe20f1cbb
4
- data.tar.gz: d826d888adbc35611754022b3143c087cd1f957f
3
+ metadata.gz: e02a1231c8da1f93e85337776859af6207d883de
4
+ data.tar.gz: 90a2861f7958bb5e790872d38c8fa348c11f7dd2
5
5
  SHA512:
6
- metadata.gz: 2dc8184f5cb6ff91de369d510d6f03c7a90030831f7971c025d010d4beaef9c5661cbcb5e32467f851b1bcce428eacd6937b8a387d24fa3d081a4613c4217e81
7
- data.tar.gz: a65afafa5c39b2e1fbf6523ea743ae300ad2e5ea871ca6f30dd34568e9a4d425e66a6c1edc93d6fdf744aca4db9472a5300374593ea70a84fb5d0ec3c6612338
6
+ metadata.gz: a35be6e48e27e4b547eba9a5ea1ce797d124f892fd2bc7a17f1df694cf1af813499cb3ac26ae02266dd5edd53b921d3e8051556c87af4be194de575994150fc1
7
+ data.tar.gz: 1d9e667aa701d5266741815debe363a56fa185c3dab5e9a49db20be59b33499f38086a65d59b2b7d99d08aae1d402fb0831439c460d5454aa769afe0d01c15e9
@@ -0,0 +1,12 @@
1
+ === 1.1.9
2
+
3
+ * https://mariadb.com/kb/en/mariadb/mariadb-connector-j-119-release-notes/
4
+
5
+ === 1.1.8
6
+
7
+ * release following MariaDB Java Client 1.1.8
8
+ https://mariadb.com/kb/en/mariadb/mariadb-java-client-118-release-notes/
9
+
10
+ === 1.1.7
11
+
12
+ * initial release using MariaDB Java Client 1.1.7
data/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  MariaDB Client Library (for Java Applications) is used to connect applications
4
4
  developed in Java to MariaDB and MySQL databases using the standard JDBC API.
5
5
 
6
- See https://mariadb.com/kb/en/about-the-mariadb-java-client/
6
+ See https://mariadb.com/kb/en/mariadb/about-mariadb-connector-j/
7
7
 
8
8
  ## Usage
9
9
 
@@ -14,7 +14,7 @@ To make the driver accessible to JDBC and JRuby by running :
14
14
 
15
15
  ## Copyright
16
16
 
17
- Copyright (c) 2014 [The JRuby Team](https://github.com/jruby).
17
+ Copyright (c) 2014-2015 [The JRuby Team](https://github.com/jruby).
18
18
 
19
19
  The MariaDB client library is LGPL licensed.
20
20
  see *LICENSE.txt* and https://www.gnu.org/licenses/lgpl.html
@@ -0,0 +1 @@
1
+ load File.expand_path('../Rakefile.jdbc', File.dirname(__FILE__))
@@ -0,0 +1,21 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $LOAD_PATH << File.expand_path('../lib', __FILE__)
3
+ require 'jdbc/mariadb/version'
4
+
5
+ Gem::Specification.new do |gem|
6
+ gem.name = %q{jdbc-mariadb}
7
+ gem.version = Jdbc::MariaDB::VERSION
8
+
9
+ gem.authors = ['Nick Sieger, Ola Bini, Karol Bucek and JRuby contributors']
10
+ gem.email = ['nick@nicksieger.com', 'ola.bini@gmail.com', 'self@kares.org']
11
+ gem.homepage = 'http://github.com/jruby/activerecord-jdbc-adapter/tree/master/jdbc-mariadb'
12
+ gem.licenses = ['LGPL']
13
+
14
+ Dir.chdir(File.dirname(__FILE__)) { gem.files = `git ls-files`.split("\n") }
15
+
16
+ gem.rdoc_options = ["--main", "README.md"]
17
+ gem.require_paths = ["lib"]
18
+
19
+ gem.summary = %q{JDBC driver for JRuby and MariaDB/MySQL (usable with ActiveRecord-JDBC).}
20
+ gem.description = %q{Install this gem `require 'jdbc/mariadb'` and invoke `Jdbc::MariaDB.load_driver` within JRuby to load the driver.}
21
+ end
@@ -1,6 +1,6 @@
1
1
  module Jdbc
2
2
  module MariaDB
3
- DRIVER_VERSION = '1.7.3'
3
+ DRIVER_VERSION = '2.0.3'
4
4
  VERSION = DRIVER_VERSION
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,17 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jdbc-mariadb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.3
4
+ version: 2.0.3
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: 2018-04-22 00:00:00.000000000 Z
11
+ date: 2017-11-09 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: Install this gem `require 'jdbc/mariadb'` and invoke `Jdbc::MariaDB.load_driver`
14
- within JRuby to load the driver.
13
+ description: Install this gem `require 'jdbc/mariadb'` and invoke `Jdbc::MariaDB.load_driver` within JRuby to load the driver.
15
14
  email:
16
15
  - nick@nicksieger.com
17
16
  - ola.bini@gmail.com
@@ -20,13 +19,14 @@ executables: []
20
19
  extensions: []
21
20
  extra_rdoc_files: []
22
21
  files:
22
+ - History.txt
23
23
  - LICENSE.txt
24
24
  - README.md
25
+ - Rakefile
26
+ - jdbc-mariadb.gemspec
25
27
  - lib/jdbc/mariadb.rb
26
28
  - lib/jdbc/mariadb/version.rb
27
- - lib/mariadb-java-client-1.7.3.jar
28
- - lib/mariadb-java-client-1.7.3.jar.asc
29
- - lib/mariadb-java-client-2.2.0.jar
29
+ - lib/mariadb-java-client-2.0.3.jar
30
30
  homepage: http://github.com/jruby/activerecord-jdbc-adapter/tree/master/jdbc-mariadb
31
31
  licenses:
32
32
  - LGPL
@@ -49,7 +49,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
49
49
  version: '0'
50
50
  requirements: []
51
51
  rubyforge_project:
52
- rubygems_version: 2.6.14.1
52
+ rubygems_version: 2.6.12
53
53
  signing_key:
54
54
  specification_version: 4
55
55
  summary: JDBC driver for JRuby and MariaDB/MySQL (usable with ActiveRecord-JDBC).
@@ -1,11 +0,0 @@
1
- -----BEGIN PGP SIGNATURE-----
2
- Version: GnuPG v2
3
-
4
- iQEcBAABCAAGBQJaqUgSAAoJEM4aPdXjyU9J8REIANa60TUu5zU5U0jbWRLqohfX
5
- XrWFezZ+wFDRy5TPgXEUzc5uQ36yj71qanJPqxicLOUS1t0bc4fkLZoFEiubj8s8
6
- 02MwBirLhe+thhL8l3LI5EUZFfP0zg1U55I1Xve9g82MBy09ztJBuaQBra5da3Ff
7
- RvMt7T/miiVs+CB23mmzg6HSYLTmIvUQcBqHftHM7SXWdhstk7Lfmo5B9u+eeatx
8
- 7lwbkTKRAmCA7Pnc5zSj/7d0r7QrS3WNBOe5NEF0sDOrd4FGSB0S8hdVSQW8Rrw6
9
- DCCljk1sk6NhVDoGYtHwxrZl+ppizox2winAKq2KgAHe2kB6Bv5eMelfd/HWFng=
10
- =CRip
11
- -----END PGP SIGNATURE-----