sequel 3.36.0 → 3.36.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.
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ === 3.36.1 (2012-06-01)
2
+
3
+ * Fix jdbc adapter when DriverManager#getConnection fails (aportnov) (#488)
4
+
1
5
  === 3.36.0 (2012-06-01)
2
6
 
3
7
  * Use Bignum generic type when dumping unsigned integer types that could potentially overflow 32-bit signed integer values (stu314)
@@ -222,7 +222,7 @@ module Sequel
222
222
  end
223
223
  opts[:jdbc_properties].each{|k,v| props.setProperty(k.to_s, v)} if opts[:jdbc_properties]
224
224
  begin
225
- driver.new.connect(args[0], props)
225
+ c = driver.new.connect(args[0], props)
226
226
  raise(Sequel::DatabaseError, 'driver.new.connect returned nil: probably bad JDBC connection string') unless c
227
227
  c
228
228
  rescue JavaSQL::SQLException, NativeException, StandardError => e2
@@ -6,7 +6,7 @@ module Sequel
6
6
  MINOR = 36
7
7
  # The tiny version of Sequel. Usually 0, only bumped for bugfix
8
8
  # releases that fix regressions from previous versions.
9
- TINY = 0
9
+ TINY = 1
10
10
 
11
11
  # The version of Sequel you are using, as a string (e.g. "2.11.0")
12
12
  VERSION = [MAJOR, MINOR, TINY].join('.')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sequel
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.36.0
4
+ version: 3.36.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-06-01 00:00:00.000000000 Z
12
+ date: 2012-06-02 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: The Database Toolkit for Ruby
15
15
  email: code@jeremyevans.net