jdbc-postgres 9.3.1102 → 9.3.1103.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
  SHA1:
3
- metadata.gz: 7cd6c2bd564457b47f9d66f3e61f807a058d48ea
4
- data.tar.gz: 7190eb97d54d8e75a71a980ad0bb78494b636265
3
+ metadata.gz: d3c7fa52ddd4b4a35d1a54c6b69f0b3590dd7b4b
4
+ data.tar.gz: ae09c5abc6eb209315a16aabd503f727130d9aff
5
5
  SHA512:
6
- metadata.gz: e80c1fe76ec02ee519e3b6b2e03f8eb63e2c1c4c3af6ac90bde215b633bb2320aef0b9881365c15d21aed8d3423a12a112ca19fccd5f641099c15cd0120de954
7
- data.tar.gz: 03c8482b637138815f3f46fe80615ebf145417c0763f118c777b2f6d2528cb13c1ce5284b8130d9977a9d67978ef5e3465982eb2e66f2a00d1875207ec4da5e2
6
+ metadata.gz: 7c9b4f4ae0e7821606bb61e344f7968de6d82186f69e3d59f814fc8b97b6521bff30b61fe058c2d76efd6d993d5a3ad62bd09df918c66318c93b897e2fc07053
7
+ data.tar.gz: 3b566dc79b800a023a60b473000a00dda8699bc21a29602b094add27e3c57bef0269958ebf78c9023d329ca472149c7533c0c19beabf0fca27364365a8ee1ba1
data/History.txt ADDED
@@ -0,0 +1,79 @@
1
+ == 9.3.1103
2
+
3
+ * Upgraded to driver version 9.3-1103
4
+ https://jdbc.postgresql.org/documentation/changelog.html#version_9.3-1103
5
+
6
+ == 9.2.1004
7
+ Likely the last release where we bundle JDBC 3.x driver version (Java < 6)
8
+
9
+ * Upgraded to 9.2-1004 drivers (still compatible with PostgreSQL 7.2+).
10
+
11
+ == 9.3.1102
12
+
13
+ * Upgraded to driver version 9.3-1102
14
+
15
+ http://jdbc.postgresql.org/download.html#supported
16
+ Changes https://github.com/pgjdbc/pgjdbc/compare/REL9_3_1101...REL9_3_1102
17
+
18
+ == 9.3.1101
19
+
20
+ * Upgraded to driver version 9.3-1101
21
+
22
+ http://jdbc.postgresql.org/download.html#supported
23
+ Changes https://github.com/pgjdbc/pgjdbc/compare/REL9_3_1100...REL9_3_1101
24
+
25
+ == 9.3.1100
26
+
27
+ * Using "new" 9.3 driver version 9.3-1100
28
+
29
+ == 9.2.1004
30
+
31
+ Likely the last release where we bundle JDBC 3.x driver version (Java < 6)
32
+
33
+ * Upgraded to 9.2-1004 drivers (still compatible with PostgreSQL 7.2+).
34
+
35
+ == 9.2.1002
36
+
37
+ * Upgraded to 9.2-1002 drivers (still compatible with PostgreSQL 7.2+).
38
+ * 9.2 supports hstore among others
39
+ See PostgreSQL JDBC {Change Log}[http://jdbc.postgresql.org/changes.html#version_9.2-1002].
40
+ First 9.2 release: {9.2-1000}[http://jdbc.postgresql.org/changes.html#version_9.2-1000].
41
+
42
+ == 9.1.903
43
+ * Upgraded to 9.1-903 drivers (still compatible with PostgreSQL 7.2+).
44
+ See PostgreSQL JDBC {Change Log}[http://jdbc.postgresql.org/changes.html#version_9.1-903].
45
+ Though change logging has been a bit spotty of late.
46
+
47
+ == 9.1.901
48
+
49
+ * Upgraded to 9.1-901 drivers (still compatible with PostgreSQL 7.2+).
50
+ See PostgreSQL JDBC {Change Log}[http://jdbc.postgresql.org/changes.html#version_9.1-901].
51
+
52
+ == 9.0.801
53
+
54
+ * Upgraded to 9.0-801 drivers (still compatible with PostgreSQL 7.2+).
55
+ See PostgreSQL JDBC {Change Log}[http://jdbc.postgresql.org/changes.html#version_9.0-801].
56
+
57
+
58
+ == 8.4.702
59
+ * Upgraded to 8.4-702 drivers, see PostgreSQL JDBC
60
+ {Change Log}[http://jdbc.postgresql.org/changes.html#version_8.4-702].
61
+
62
+ == 8.4.701
63
+
64
+ * Upgraded to 8.4-701 drivers, see PostgreSQL JDBC
65
+ {Change Log}[http://jdbc.postgresql.org/changes.html#version_8.4-701].
66
+
67
+ == 8.3.605
68
+
69
+ * Upgraded to 8.3-605 drivers, see PostgreSQL JDBC
70
+ {Change Log}[http://jdbc.postgresql.org/changes.html#version_8.3-605].
71
+
72
+ == 8.3.604
73
+
74
+ * Upgraded to 8.3-604 drivers
75
+ * Added runtime selection of either JDBC 3 or JDBC 4 (j2se 1.6+) driver.
76
+
77
+ == 8.2
78
+
79
+ * Initial version
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ load File.expand_path('../Rakefile.jdbc', File.dirname(__FILE__))
@@ -0,0 +1,24 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $LOAD_PATH << File.expand_path('../lib', __FILE__)
3
+ require 'jdbc/postgres/version'
4
+
5
+ Gem::Specification.new do |gem|
6
+ gem.name = %q{jdbc-postgres}
7
+ gem.version = Jdbc::Postgres::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-postgres'
12
+ gem.licenses = ['BSD']
13
+
14
+ unless Dir.pwd == File.dirname(__FILE__)
15
+ raise "git ls-files in current working dir: #{Dir.pwd} won't work cd '#{File.dirname(__FILE__)}' first"
16
+ end
17
+ gem.files = `git ls-files`.split("\n")
18
+
19
+ gem.rdoc_options = ["--main", "README.md"]
20
+ gem.require_paths = ["lib"]
21
+
22
+ gem.summary = %q{JDBC driver for JRuby and PostgreSQL (used by ActiveRecord-JDBC).}
23
+ gem.description = %q{Install this gem `require 'jdbc/postgres'` and invoke `Jdbc::Postgres.load_driver` within JRuby to load the driver.}
24
+ end
@@ -1,6 +1,6 @@
1
1
  module Jdbc
2
2
  module Postgres
3
- DRIVER_VERSION = '9.3.1102'
4
- VERSION = DRIVER_VERSION
3
+ DRIVER_VERSION = '9.3.1103'
4
+ VERSION = DRIVER_VERSION + '.1'
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jdbc-postgres
3
3
  version: !ruby/object:Gem::Version
4
- version: 9.3.1102
4
+ version: 9.3.1103.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: 2014-07-25 00:00:00.000000000 Z
11
+ date: 2015-02-14 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Install this gem `require 'jdbc/postgres'` and invoke `Jdbc::Postgres.load_driver` within JRuby to load the driver.
14
14
  email:
@@ -19,14 +19,17 @@ executables: []
19
19
  extensions: []
20
20
  extra_rdoc_files: []
21
21
  files:
22
- - README.md
22
+ - History.txt
23
23
  - LICENSE.txt
24
- - lib/postgresql-9.3-1102.jdbc41.jar
25
- - lib/postgresql-9.3-1102.jdbc4.jar
26
- - lib/jdbc/postgresql.rb
24
+ - README.md
25
+ - Rakefile
26
+ - jdbc-postgres.gemspec
27
27
  - lib/jdbc/postgres.rb
28
- - lib/jdbc/postgresql/version.rb
29
28
  - lib/jdbc/postgres/version.rb
29
+ - lib/jdbc/postgresql.rb
30
+ - lib/jdbc/postgresql/version.rb
31
+ - lib/postgresql-9.3-1103.jdbc4.jar
32
+ - lib/postgresql-9.3-1103.jdbc41.jar
30
33
  homepage: http://github.com/jruby/activerecord-jdbc-adapter/tree/master/jdbc-postgres
31
34
  licenses:
32
35
  - BSD
@@ -49,7 +52,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
49
52
  version: '0'
50
53
  requirements: []
51
54
  rubyforge_project:
52
- rubygems_version: 2.1.9
55
+ rubygems_version: 2.4.5
53
56
  signing_key:
54
57
  specification_version: 4
55
58
  summary: JDBC driver for JRuby and PostgreSQL (used by ActiveRecord-JDBC).