aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2006-03-28 05:03:05 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2006-03-28 05:03:05 +0000
commit479b4fb5d998aebcec6872f1514142e4f387fd23 (patch)
tree2b775c2ccdab884d8c17e3815e5ac05e0c444d23 /activesupport
parent9babb2014ba101e8c4a7b7808c3e3624ee7bb8d7 (diff)
downloadrails-479b4fb5d998aebcec6872f1514142e4f387fd23.tar.gz
rails-479b4fb5d998aebcec6872f1514142e4f387fd23.tar.bz2
rails-479b4fb5d998aebcec6872f1514142e4f387fd23.zip
Made ready for release
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4088 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/CHANGELOG2
-rw-r--r--activesupport/lib/active_support/version.rb4
2 files changed, 3 insertions, 3 deletions
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG
index b6a7c3990f..388cdb3b8f 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -1,4 +1,4 @@
-*SVN*
+*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 6b3cff2e23..5332627a37 100644
--- a/activesupport/lib/active_support/version.rb
+++ b/activesupport/lib/active_support/version.rb
@@ -1,8 +1,8 @@
module ActiveSupport
module VERSION #:nodoc:
MAJOR = 1
- MINOR = 2
- TINY = 5
+ MINOR = 3
+ TINY = 0
STRING = [MAJOR, MINOR, TINY].join('.')
end