sequel 2.7.0 → 2.7.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
+ === 2.7.1 (2008-11-04)
2
+
3
+ * Fix PostgreSQL Date optimization so that it doesn't reject dates like 11/03/2008 (jeremyevans)
4
+
1
5
  === 2.7.0 (2008-11-03)
2
6
 
3
7
  * Transform AssociationReflection from a single class to a class hierarchy (jeremyevans)
data/Rakefile CHANGED
@@ -12,7 +12,7 @@ require "fileutils"
12
12
  include FileUtils
13
13
 
14
14
  NAME = 'sequel'
15
- VERS = '2.7.0'
15
+ VERS = '2.7.1'
16
16
  CLEAN.include ["**/.*.sw?", "pkg", ".config", "rdoc", "coverage", "www/public/*.html"]
17
17
  RDOC_OPTS = ["--quiet", "--line-numbers", "--inline-source", '--title', \
18
18
  'Sequel: The Database Toolkit for Ruby', '--main', 'README']
@@ -119,7 +119,7 @@ module Sequel
119
119
  # the date style to ISO in order make Date object creation in ruby faster,
120
120
  # if Postgres.use_iso_date_format is true.
121
121
  def apply_connection_settings
122
- async_exec("SET DateStyle = 'ISO, YMD'") if Postgres.use_iso_date_format
122
+ async_exec("SET DateStyle = 'ISO'") if Postgres.use_iso_date_format
123
123
  end
124
124
 
125
125
  # Execute the given SQL with this connection. If a block is given,
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: 2.7.0
4
+ version: 2.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremy Evans
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-11-03 00:00:00 -08:00
12
+ date: 2008-11-04 00:00:00 -08:00
13
13
  default_executable:
14
14
  dependencies: []
15
15