aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2010-07-26 12:52:34 -0500
committerDavid Heinemeier Hansson <david@loudthinking.com>2010-07-26 12:53:25 -0500
commit856fc4bbc379b330d11702adbc2b26850dca6206 (patch)
tree904e79aecacae1aed69d63ff6cf4da960bb94ddf /activerecord
parentdd61a817dea85990f13664d74bca15bc5796b76e (diff)
downloadrails-856fc4bbc379b330d11702adbc2b26850dca6206.tar.gz
rails-856fc4bbc379b330d11702adbc2b26850dca6206.tar.bz2
rails-856fc4bbc379b330d11702adbc2b26850dca6206.zip
Prep for RC
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/CHANGELOG2
-rw-r--r--activerecord/lib/active_record/version.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index 679fdafae8..20b2286fc0 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -1,4 +1,4 @@
-*Rails 3.0.0 [RC1] (unreleased)*
+*Rails 3.0.0 [release candidate] (July 26th, 2010)*
* Changed update_attribute to not run callbacks and update the record directly in the database [Neeraj Singh]
diff --git a/activerecord/lib/active_record/version.rb b/activerecord/lib/active_record/version.rb
index d18fed0131..a467ffa960 100644
--- a/activerecord/lib/active_record/version.rb
+++ b/activerecord/lib/active_record/version.rb
@@ -3,7 +3,7 @@ module ActiveRecord
MAJOR = 3
MINOR = 0
TINY = 0
- BUILD = "beta4"
+ BUILD = "rc"
STRING = [MAJOR, MINOR, TINY, BUILD].join('.')
end