rjack-jdbc-postgres 9.4.1208.0 → 42.1.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: d06bd269119a2c3414ec1d086d4c2640873ac125
4
- data.tar.gz: fef1a8bd3d75b4d2df9cccdd68c3ff9969fd61cc
2
+ SHA256:
3
+ metadata.gz: 975a1f8c16845c71429b5b84825bc1a721a91992ca9cddd9e3fc47cc1402bb1b
4
+ data.tar.gz: 94132f3f67625dd92df72c301249951288f92b2f3ceb21f4fce565661e76d949
5
5
  SHA512:
6
- metadata.gz: f087a095268890757fe174c38c06f19780f744fd7064dba8bd51f5044f26a430b2b818f144e404b707d7a017217b46da8d32116dc982bdd3dacf245f63af220a
7
- data.tar.gz: 0219054b8ff8696a4092ed4de2ac85311cd268aeaf7f326b1f3ded68586e5bf95edda29f2229ad7c062ad3f04b4b73b4110954a3eac7b84211eae378b4d79057
6
+ metadata.gz: 33ae949db26d4ae14da61f7314055edd9bf8daf938d9fa29bd7368510e7c04b0d72a1caf1458d3b272e1b6d1c30301c6e2bf3adc79604c8a62b53ec09cb0f99a
7
+ data.tar.gz: 96506d00f471f797c2414e424c1f52ee7139730be7226fdc679bd1b8dffe67d31e05fbf3172ce6612085b33b4705279919c3830d79a98aea0f107b0b8e96c142
@@ -1,3 +1,7 @@
1
+ === 42.1.1.0 (2017-6-19)
2
+ * Update to 42.1.1 (note changed
3
+ {versioning scheme}[https://jdbc.postgresql.org/documentation/faq.html#versioning])
4
+
1
5
  === 9.4.1208.0 (2016-3-24)
2
6
  * Update to 9.4.1208
3
7
 
@@ -5,5 +5,5 @@ Rakefile
5
5
  lib/rjack-jdbc-postgres/base.rb
6
6
  lib/rjack-jdbc-postgres.rb
7
7
  test/test_jdbc_postgres.rb
8
- lib/rjack-jdbc-postgres/postgresql-9.4.1208.jdbc41.jar
9
- lib/rjack-jdbc-postgres/postgresql-9.4.1208.jdbc42.jar
8
+ lib/rjack-jdbc-postgres/postgresql-42.1.1.jdbc41.jar
9
+ lib/rjack-jdbc-postgres/postgresql-42.1.1.jdbc42.jar
@@ -16,7 +16,7 @@ the underlying JDBC driver jar, without any other contortions.
16
16
 
17
17
  === rjack-jdbc-postgres
18
18
 
19
- Copyright (c) 2013-2016 David Kellum
19
+ Copyright (c) 2013-2017 David Kellum
20
20
  All rights reserved.
21
21
 
22
22
  Redistribution and use in source and binary forms, with or without
data/Rakefile CHANGED
@@ -20,3 +20,10 @@ task :publish_rdoc => [ :clean, :rerdoc ] do
20
20
  aws s3 sync --acl public-read doc/ s3://rjack.gravitext.com/jdbc-postgres/
21
21
  SH
22
22
  end
23
+
24
+ task :rdoc do
25
+ sh <<-SH
26
+ rm -rf doc/fonts
27
+ cp ../rdoc_css/*.css doc/css/
28
+ SH
29
+ end
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2013-2016 David Kellum
2
+ # Copyright (c) 2013-2017 David Kellum
3
3
  # All rights reserved.
4
4
  #
5
5
  # Redistribution and use in source and binary forms, with or without
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2013-2016 David Kellum
2
+ # Copyright (c) 2013-2017 David Kellum
3
3
  # All rights reserved.
4
4
  #
5
5
  # Redistribution and use in source and binary forms, with or without
@@ -32,7 +32,7 @@ module RJack
32
32
  module JDBCPostgres
33
33
 
34
34
  # Postgres JDBC Driver version
35
- DRIVER_VERSION = "9.4.1208"
35
+ DRIVER_VERSION = "42.1.1"
36
36
 
37
37
  # rjack gem version
38
38
  VERSION = DRIVER_VERSION.gsub( '-', '.' ) + '.0'
@@ -2,7 +2,7 @@
2
2
  #.hashdot.profile += jruby-shortlived
3
3
 
4
4
  #--
5
- # Copyright (c) 2013-2016 David Kellum
5
+ # Copyright (c) 2013-2017 David Kellum
6
6
  # All rights reserved.
7
7
  #
8
8
  # Redistribution and use in source and binary forms, with or without
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rjack-jdbc-postgres
3
3
  version: !ruby/object:Gem::Version
4
- version: 9.4.1208.0
4
+ version: 42.1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Kellum
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-03-24 00:00:00.000000000 Z
11
+ date: 2017-06-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -27,17 +27,23 @@ dependencies:
27
27
  - !ruby/object:Gem::Dependency
28
28
  requirement: !ruby/object:Gem::Requirement
29
29
  requirements:
30
- - - "~>"
30
+ - - ">="
31
31
  - !ruby/object:Gem::Version
32
32
  version: 4.0.1
33
+ - - "<"
34
+ - !ruby/object:Gem::Version
35
+ version: '5'
33
36
  name: rdoc
34
37
  prerelease: false
35
38
  type: :development
36
39
  version_requirements: !ruby/object:Gem::Requirement
37
40
  requirements:
38
- - - "~>"
41
+ - - ">="
39
42
  - !ruby/object:Gem::Version
40
43
  version: 4.0.1
44
+ - - "<"
45
+ - !ruby/object:Gem::Version
46
+ version: '5'
41
47
  - !ruby/object:Gem::Dependency
42
48
  requirement: !ruby/object:Gem::Requirement
43
49
  requirements:
@@ -67,8 +73,8 @@ files:
67
73
  - Rakefile
68
74
  - lib/rjack-jdbc-postgres.rb
69
75
  - lib/rjack-jdbc-postgres/base.rb
70
- - lib/rjack-jdbc-postgres/postgresql-9.4.1208.jdbc41.jar
71
- - lib/rjack-jdbc-postgres/postgresql-9.4.1208.jdbc42.jar
76
+ - lib/rjack-jdbc-postgres/postgresql-42.1.1.jdbc41.jar
77
+ - lib/rjack-jdbc-postgres/postgresql-42.1.1.jdbc42.jar
72
78
  - test/test_jdbc_postgres.rb
73
79
  homepage: http://rjack.gravitext.com/jdbc-postgres
74
80
  licenses: []
@@ -91,8 +97,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
91
97
  version: '0'
92
98
  requirements: []
93
99
  rubyforge_project:
94
- rubygems_version: 2.4.8
100
+ rubygems_version: 2.6.11
95
101
  signing_key:
96
102
  specification_version: 4
97
- summary: A gem packaging of the Postgres JDBC Driver for JDBC 4.1 (Java 1.7) and JDBC 4.2 (Java 1.8+).
103
+ summary: A gem packaging of the Postgres JDBC Driver for JDBC 4.1 (Java 1.7) and JDBC
104
+ 4.2 (Java 1.8+).
98
105
  test_files: []