Skip to content

Commit

Permalink
Release 2.2.20 version.
Browse files Browse the repository at this point in the history
  • Loading branch information
metaskills committed Sep 10, 2009
1 parent 29b26ad commit 78c80f7
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
4 changes: 2 additions & 2 deletions 2000-2005-adapter.gemspec
@@ -1,7 +1,7 @@
Gem::Specification.new do |s|
s.name = "2000-2005-adapter"
s.version = "2.2.19"
s.date = "2009-06-18"
s.version = "2.2.20"
s.date = "2009-09-10"
s.summary = "SQL Server 2000, 2005 and 2008 Adapter For Rails."
s.email = "ken@metaskills.net"
s.homepage = "http://github.com/rails-sqlserver"
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG
@@ -1,6 +1,11 @@

MASTER

*


* 2.2.20 * (September 10th, 2009)

* Implement a new remove_default_constraint method that uses sp_helpconstraint [Ken Collins]

* Use a lazy match in add_order_by_for_association_limiting! to allow sub selects to be used. Resolves
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -3,7 +3,7 @@ require 'rake'
require 'rake/testtask'
require 'echoe'

Echoe.new('activerecord-sqlserver-adapter','2.2.19') do |p|
Echoe.new('activerecord-sqlserver-adapter','2.2.20') do |p|
p.summary = "SQL Server 2000, 2005 and 2008 Adapter For Rails."
p.description = "SQL Server 2000, 2005 and 2008 Adapter For Rails."
p.author = ["Ken Collins","Murray Steele","Shawn Balestracci","Joe Rafaniello","Tom Ward"]
Expand Down
2 changes: 1 addition & 1 deletion lib/active_record/connection_adapters/sqlserver_adapter.rb
Expand Up @@ -183,7 +183,7 @@ def simplified_datetime
class SQLServerAdapter < AbstractAdapter

ADAPTER_NAME = 'SQLServer'.freeze
VERSION = '2.2.19'.freeze
VERSION = '2.2.20'.freeze
DATABASE_VERSION_REGEXP = /Microsoft SQL Server\s+(\d{4})/
SUPPORTED_VERSIONS = [2000,2005,2008].freeze
LIMITABLE_TYPES = ['string','integer','float','char','nchar','varchar','nvarchar'].freeze
Expand Down

0 comments on commit 78c80f7

Please sign in to comment.