Include the calculations fix for a new release of AR

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4203 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson
2006-04-09 21:27:32 +00:00
parent 4d078c87f4
commit 00050dfedb
6 changed files with 15 additions and 5 deletions

View File

@@ -1,3 +1,8 @@
*1.14.2* (April 9th, 2005)
* Fixed calculations for the Oracle Adapter (closes #4626) [Michael Schoen]
*1.14.1* (April 6th, 2005)
* Fix type_name_with_module to handle type names that begin with '::'. Closes #4614. [Nicholas Seckar]

View File

@@ -2,7 +2,7 @@ module ActiveRecord
module VERSION #:nodoc:
MAJOR = 1
MINOR = 14
TINY = 1
TINY = 2
STRING = [MAJOR, MINOR, TINY].join('.')
end