diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-10-25 22:11:48 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-10-25 22:11:48 +0000 |
commit | c7a6b9862dca37fd393a7585f850dfb46725ad40 (patch) | |
tree | a135a8b2e00f10d9b71e669b9d46fbc710d86e41 /activesupport | |
parent | 06303ed34eea1f9c3dfa8c7d0ada186b0faf648f (diff) | |
download | rails-c7a6b9862dca37fd393a7585f850dfb46725ad40.tar.gz rails-c7a6b9862dca37fd393a7585f850dfb46725ad40.tar.bz2 rails-c7a6b9862dca37fd393a7585f850dfb46725ad40.zip |
Prepared for release of 0.14.2 (RC3)
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2737 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/CHANGELOG | 2 | ||||
-rw-r--r-- | activesupport/lib/active_support/version.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG index 232cd03973..b48837b2f3 100644 --- a/activesupport/CHANGELOG +++ b/activesupport/CHANGELOG @@ -1,4 +1,4 @@ -*SVN* +*1.2.2* (October 26th, 2005) * Set Logger.silencer = false to disable Logger#silence. Useful for debugging fixtures. diff --git a/activesupport/lib/active_support/version.rb b/activesupport/lib/active_support/version.rb index 010cfa60e6..92db31a4d7 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 = 2 - TINY = 1 + TINY = 2 STRING = [MAJOR, MINOR, TINY].join('.') end |