Skip to content

Commit

Permalink
Prepare for 2.3 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
metaskills committed Dec 1, 2009
1 parent f7292dd commit 39d2995
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion 2000-2005-adapter.gemspec
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = "2000-2005-adapter"
s.version = "2.2.22"
s.version = "2.3"
s.date = "2009-09-10"
s.summary = "SQL Server 2000, 2005 and 2008 Adapter For Rails."
s.email = "ken@metaskills.net"
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG
@@ -1,6 +1,9 @@

MASTER


* 2.3 * (December 1st, 2009)

* Table and column aliases can handle many. Resolves ticket #19 [stonegao]

* Coerce a few tests that were failing in 2.3.x [Ken Collins]
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.22') do |p|
Echoe.new('activerecord-sqlserver-adapter','2.3') 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.22'.freeze
VERSION = '2.3'.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 39d2995

Please sign in to comment.