Skip to content

Commit 0ac7af8

Browse files
committed
Release 2.2.19
1 parent 32ff392 commit 0ac7af8

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

2000-2005-adapter.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Gem::Specification.new do |s|
22
s.name = "2000-2005-adapter"
3-
s.version = "2.2.18"
4-
s.date = "2009-06-05"
3+
s.version = "2.2.19"
4+
s.date = "2009-06-18"
55
s.summary = "SQL Server 2000, 2005 and 2008 Adapter For Rails."
66
s.email = "ken@metaskills.net"
77
s.homepage = "http://github.com/rails-sqlserver"

CHANGELOG

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11

22
MASTER
33

4+
* 2.2.19 * (June 19th, 2009)
5+
46
* Leave quoted column names as is. Resolves ticket #36 [Vince Puzzella]
57

68
* Changing add_limit! in ActiveRecord::Base for SQLServer so that it passes through any scoped :order

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ require 'rake'
33
require 'rake/testtask'
44
require 'echoe'
55

6-
Echoe.new('activerecord-sqlserver-adapter','2.2.18') do |p|
6+
Echoe.new('activerecord-sqlserver-adapter','2.2.19') do |p|
77
p.summary = "SQL Server 2000, 2005 and 2008 Adapter For Rails."
88
p.description = "SQL Server 2000, 2005 and 2008 Adapter For Rails."
99
p.author = ["Ken Collins","Murray Steele","Shawn Balestracci","Joe Rafaniello","Tom Ward"]

lib/active_record/connection_adapters/sqlserver_adapter.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ def simplified_datetime
183183
class SQLServerAdapter < AbstractAdapter
184184

185185
ADAPTER_NAME = 'SQLServer'.freeze
186-
VERSION = '2.2.18'.freeze
186+
VERSION = '2.2.19'.freeze
187187
DATABASE_VERSION_REGEXP = /Microsoft SQL Server\s+(\d{4})/
188188
SUPPORTED_VERSIONS = [2000,2005,2008].freeze
189189
LIMITABLE_TYPES = ['string','integer','float','char','nchar','varchar','nvarchar'].freeze

0 commit comments

Comments
 (0)