aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-03-07 01:50:58 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-03-07 01:50:58 +0000
commit184419092ae11b6aef794d253d1bb0c84804f5fc (patch)
treee1ced6079d111377ce9be95c0d61b5b64acb99f7 /railties
parent5bca6290003650563bea83f3373b4774b93200f5 (diff)
downloadrails-184419092ae11b6aef794d253d1bb0c84804f5fc.tar.gz
rails-184419092ae11b6aef794d253d1bb0c84804f5fc.tar.bz2
rails-184419092ae11b6aef794d253d1bb0c84804f5fc.zip
Prepared for 0.10.1 release
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@874 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties')
-rw-r--r--railties/CHANGELOG4
-rw-r--r--railties/Rakefile12
-rw-r--r--railties/html/index.html5
3 files changed, 14 insertions, 7 deletions
diff --git a/railties/CHANGELOG b/railties/CHANGELOG
index c4de06d414..5dd56364a0 100644
--- a/railties/CHANGELOG
+++ b/railties/CHANGELOG
@@ -1,4 +1,4 @@
-*SVN*
+*0.10.1* (7th March, 2005)
* Fixed rake stats to ignore editor backup files like model.rb~ #791 [skanthak]
@@ -30,6 +30,8 @@
* Removed the obsolete -i/--index option from the WEBrick servlet #743
+* Upgraded to Active Record 1.8.0, Action Pack 1.5.1, Action Mailer 0.7.1, Action Web Service 0.6.0, Active Support 1.0.1
+
*0.10.0* (24th February, 2005)
diff --git a/railties/Rakefile b/railties/Rakefile
index 5523359191..8de10ed121 100644
--- a/railties/Rakefile
+++ b/railties/Rakefile
@@ -9,7 +9,7 @@ require 'rbconfig'
PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
PKG_NAME = 'rails'
-PKG_VERSION = '0.10.0' + PKG_BUILD
+PKG_VERSION = '0.10.1' + PKG_BUILD
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
PKG_DESTINATION = ENV["RAILS_PKG_DESTINATION"] || "../#{PKG_NAME}"
@@ -237,11 +237,11 @@ spec = Gem::Specification.new do |s|
EOF
s.add_dependency('rake', '>= 0.4.15')
- s.add_dependency('activesupport', '= 1.0.0' + PKG_BUILD)
- s.add_dependency('activerecord', '= 1.7.0' + PKG_BUILD)
- s.add_dependency('actionpack', '= 1.5.0' + PKG_BUILD)
- s.add_dependency('actionmailer', '= 0.7.0' + PKG_BUILD)
- s.add_dependency('actionwebservice', '= 0.5.0' + PKG_BUILD)
+ s.add_dependency('activesupport', '= 1.0.1' + PKG_BUILD)
+ s.add_dependency('activerecord', '= 1.8.0' + PKG_BUILD)
+ s.add_dependency('actionpack', '= 1.5.1' + PKG_BUILD)
+ s.add_dependency('actionmailer', '= 0.7.1' + PKG_BUILD)
+ s.add_dependency('actionwebservice', '= 0.6.0' + PKG_BUILD)
s.rdoc_options << '--exclude' << '.'
s.has_rdoc = false
diff --git a/railties/html/index.html b/railties/html/index.html
index 0c36b90579..f1d84b2c94 100644
--- a/railties/html/index.html
+++ b/railties/html/index.html
@@ -61,6 +61,11 @@
</ol>
<p>
+ Trying to setup a default page for Rails using Routes? You'll have to delete this file (public/index.html) to get under way. Then define a new route in <tt>config/routes.rb</tt> of the form:
+ <pre> map.connect '', :controller => 'wiki/page', :action => 'show', :title => 'Welcome'</pre>
+</p>
+
+<p>
Having problems getting up and running? First try debugging it yourself by looking at the log files. <br/>
Then try the friendly Rails community <a href="http://www.rubyonrails.org">on the web</a> or <a href="http://www.rubyonrails.org/show/IRC">on IRC</a>
(<a href="irc://irc.freenode.net/#rubyonrails">FreeNode#rubyonrails</a>).