jdbc-postgres 9.3.1103.1 → 9.4.1200

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: d3c7fa52ddd4b4a35d1a54c6b69f0b3590dd7b4b
4
- data.tar.gz: ae09c5abc6eb209315a16aabd503f727130d9aff
3
+ metadata.gz: 94f83a185782b919cbec15ddf4b475d57d5839ca
4
+ data.tar.gz: de1fed8dbe6eea11a339008d058267fe0b504a59
5
5
  SHA512:
6
- metadata.gz: 7c9b4f4ae0e7821606bb61e344f7968de6d82186f69e3d59f814fc8b97b6521bff30b61fe058c2d76efd6d993d5a3ad62bd09df918c66318c93b897e2fc07053
7
- data.tar.gz: 3b566dc79b800a023a60b473000a00dda8699bc21a29602b094add27e3c57bef0269958ebf78c9023d329ca472149c7533c0c19beabf0fca27364365a8ee1ba1
6
+ metadata.gz: 54d289be33eae148dd01af4b9cac407de83f41f7328f2e45d9e98f0048c414c27e1f5bcd53c4e62a07d773b3ae25c1a8f36f19dd4b6c41ab05bc5784e3b17cf0
7
+ data.tar.gz: d7b21fbd677fa3dafe3d3098838509027339fd54b898dd676bfef079adb5e0b437c68207a02e641a6cf9c9313b898a02ba6fadd13aa9559cd4b0422101053a84
@@ -1,3 +1,8 @@
1
+ == 9.4.1200
2
+
3
+ * Upgraded to driver version 9.4-1200
4
+ https://jdbc.postgresql.org/documentation/changelog.html#version_9.4-1200
5
+
1
6
  == 9.3.1103
2
7
 
3
8
  * Upgraded to driver version 9.3-1103
@@ -10,11 +10,8 @@ Gem::Specification.new do |gem|
10
10
  gem.email = ['nick@nicksieger.com', 'ola.bini@gmail.com', 'self@kares.org']
11
11
  gem.homepage = 'http://github.com/jruby/activerecord-jdbc-adapter/tree/master/jdbc-postgres'
12
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")
13
+
14
+ Dir.chdir(File.dirname(__FILE__)) { gem.files = `git ls-files`.split("\n") }
18
15
 
19
16
  gem.rdoc_options = ["--main", "README.md"]
20
17
  gem.require_paths = ["lib"]
@@ -1,6 +1,6 @@
1
1
  module Jdbc
2
2
  module Postgres
3
- DRIVER_VERSION = '9.3.1103'
4
- VERSION = DRIVER_VERSION + '.1'
3
+ DRIVER_VERSION = '9.4.1200'
4
+ VERSION = DRIVER_VERSION
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.1103.1
4
+ version: 9.4.1200
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: 2015-02-14 00:00:00.000000000 Z
11
+ date: 2015-02-16 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:
@@ -28,8 +28,8 @@ files:
28
28
  - lib/jdbc/postgres/version.rb
29
29
  - lib/jdbc/postgresql.rb
30
30
  - lib/jdbc/postgresql/version.rb
31
- - lib/postgresql-9.3-1103.jdbc4.jar
32
- - lib/postgresql-9.3-1103.jdbc41.jar
31
+ - lib/postgresql-9.4-1200.jdbc4.jar
32
+ - lib/postgresql-9.4-1200.jdbc41.jar
33
33
  homepage: http://github.com/jruby/activerecord-jdbc-adapter/tree/master/jdbc-postgres
34
34
  licenses:
35
35
  - BSD