diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2006-04-06 05:26:14 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2006-04-06 05:26:14 +0000 |
commit | 944ae628f529a5392a543a88186415e87f462009 (patch) | |
tree | 75da7630316ca0c66c41074f85144cdac6c792d0 /activesupport | |
parent | 26e381302c7eee09b8d03d32dc7a8233098a9abf (diff) | |
download | rails-944ae628f529a5392a543a88186415e87f462009.tar.gz rails-944ae628f529a5392a543a88186415e87f462009.tar.bz2 rails-944ae628f529a5392a543a88186415e87f462009.zip |
Update versions for Rails 1.1.1
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4183 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/CHANGELOG | 3 | ||||
-rw-r--r-- | activesupport/lib/active_support/version.rb | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG index 18017ea783..66c9fe2671 100644 --- a/activesupport/CHANGELOG +++ b/activesupport/CHANGELOG @@ -1,4 +1,4 @@ -* SVN * +*1.3.1* (April 6th, 2005) * Clean paths inside of exception messages and traces. [Nicholas Seckar] @@ -6,6 +6,7 @@ * provide an empty Dependencies::LoadingModule.load which prints deprecation warnings. Lets 1.0 applications function with .13-style environment.rb. + *1.3.0* (March 27th, 2005) * When possible, avoid incorrectly obtaining constants from parent modules. Fixes #4221. [Nicholas Seckar] diff --git a/activesupport/lib/active_support/version.rb b/activesupport/lib/active_support/version.rb index 5332627a37..8e0ef72982 100644 --- a/activesupport/lib/active_support/version.rb +++ b/activesupport/lib/active_support/version.rb @@ -2,7 +2,7 @@ module ActiveSupport module VERSION #:nodoc: MAJOR = 1 MINOR = 3 - TINY = 0 + TINY = 1 STRING = [MAJOR, MINOR, TINY].join('.') end |