Skip to content

Commit 634f12e

Browse files
committed
Release 2.2.5 version/gem.
1 parent 2a76eea commit 634f12e

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-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.4"
4-
s.date = "2008-11-25"
3+
s.version = "2.2.5"
4+
s.date = "2009-01-04"
55
s.summary = "SQL Server 2000 & 2005 Adapter For Rails."
66
s.email = "ken@metaskills.net"
77
s.homepage = "http://github.com/rails-sqlserver/2000-2005-adapter/"

CHANGELOG

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

22
MASTER
33

4+
*
5+
6+
7+
* 2.2.5 (January 4th, 2009)
8+
49
* Added a log_info_schema_queries class attribute and make all queries to INFORMATION_SCHEMA silent by
510
default. [Ken Collins]
611

README.rdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ By default any :binary column created by migrations will create these native typ
6868
* SQL Server 2005 is 'varbinary(max)'
6969

7070

71-
== Schema Information Logging
71+
==== Schema Information Logging
7272

7373
By default all queries to the INFORMATION_SCHEMA table is silenced. If you think logging these queries are useful, you can enable it by adding this like to a config/initializers file.
7474

lib/active_record/connection_adapters/sqlserver_adapter.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ def simplified_datetime
150150
class SQLServerAdapter < AbstractAdapter
151151

152152
ADAPTER_NAME = 'SQLServer'.freeze
153-
VERSION = '2.2.4'.freeze
153+
VERSION = '2.2.5'.freeze
154154
DATABASE_VERSION_REGEXP = /Microsoft SQL Server\s+(\d{4})/
155155
SUPPORTED_VERSIONS = [2000,2005].freeze
156156
LIMITABLE_TYPES = ['string','integer','float','char','nchar','varchar','nvarchar'].freeze

0 commit comments

Comments
 (0)