aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--actionmailer/CHANGELOG5
-rwxr-xr-xactionmailer/Rakefile4
-rw-r--r--actionpack/CHANGELOG2
-rwxr-xr-xactionpack/Rakefile4
-rw-r--r--actionwebservice/CHANGELOG2
-rw-r--r--actionwebservice/Rakefile8
-rw-r--r--activerecord/CHANGELOG2
-rw-r--r--activesupport/CHANGELOG2
-rw-r--r--activesupport/Rakefile2
-rw-r--r--railties/CHANGELOG4
-rw-r--r--railties/Rakefile12
-rw-r--r--railties/html/index.html5
12 files changed, 32 insertions, 20 deletions
diff --git a/actionmailer/CHANGELOG b/actionmailer/CHANGELOG
index ea55119b6f..852c149f0e 100644
--- a/actionmailer/CHANGELOG
+++ b/actionmailer/CHANGELOG
@@ -1,3 +1,8 @@
+*0.7.1* (7th March, 2005)
+
+* Bind to newest Action Pack (1.5.1)
+
+
*0.7.0* (24th February, 2005)
* Added support for charsets for both subject and body. The default charset is now UTF-8 #673 [Jamis Buck]. Examples:
diff --git a/actionmailer/Rakefile b/actionmailer/Rakefile
index f1fbafb798..7669271d37 100755
--- a/actionmailer/Rakefile
+++ b/actionmailer/Rakefile
@@ -8,7 +8,7 @@ require 'rake/contrib/rubyforgepublisher'
PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
PKG_NAME = 'actionmailer'
-PKG_VERSION = '0.7.0' + PKG_BUILD
+PKG_VERSION = '0.7.1' + PKG_BUILD
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
desc "Default Task"
@@ -50,7 +50,7 @@ spec = Gem::Specification.new do |s|
s.rubyforge_project = "actionmailer"
s.homepage = "http://www.rubyonrails.org"
- s.add_dependency('actionpack', '= 1.5.0' + PKG_BUILD)
+ s.add_dependency('actionpack', '= 1.5.1' + PKG_BUILD)
s.has_rdoc = true
s.requirements << 'none'
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index 76f691cc00..4c98817c8c 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,4 +1,4 @@
-*SVN*
+*1.5.1* (7th March, 2005)
* Fixed that the routes.rb file wouldn't be found on symlinked setups due to File.expand_path #793 [piotr@t-p-l.com]
diff --git a/actionpack/Rakefile b/actionpack/Rakefile
index 004a3122f3..7c40e530dc 100755
--- a/actionpack/Rakefile
+++ b/actionpack/Rakefile
@@ -8,7 +8,7 @@ require 'rake/contrib/rubyforgepublisher'
PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
PKG_NAME = 'actionpack'
-PKG_VERSION = '1.5.0' + PKG_BUILD
+PKG_VERSION = '1.5.1' + PKG_BUILD
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
desc "Default Task"
@@ -57,7 +57,7 @@ spec = Gem::Specification.new do |s|
s.has_rdoc = true
s.requirements << 'none'
- s.add_dependency('activesupport', '= 1.0.0' + PKG_BUILD)
+ s.add_dependency('activesupport', '= 1.0.1' + PKG_BUILD)
s.require_path = 'lib'
s.autorequire = 'action_controller'
diff --git a/actionwebservice/CHANGELOG b/actionwebservice/CHANGELOG
index 5dbae2ff88..0e038b622c 100644
--- a/actionwebservice/CHANGELOG
+++ b/actionwebservice/CHANGELOG
@@ -1,4 +1,4 @@
-*0.6.0* (Unreleased)
+*0.6.0* (7th March, 2005)
* Add action_controller/test_invoke, used for integrating AWS with the Rails testing infrastructure
diff --git a/actionwebservice/Rakefile b/actionwebservice/Rakefile
index 71f7290988..f713636047 100644
--- a/actionwebservice/Rakefile
+++ b/actionwebservice/Rakefile
@@ -9,7 +9,7 @@ require 'fileutils'
PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
PKG_NAME = 'actionwebservice'
-PKG_VERSION = '0.5.0' + PKG_BUILD
+PKG_VERSION = '0.6.0' + PKG_BUILD
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
PKG_DESTINATION = ENV["RAILS_PKG_DESTINATION"] || "../#{PKG_NAME}"
@@ -56,9 +56,9 @@ spec = Gem::Specification.new do |s|
s.rubyforge_project = "aws"
s.homepage = "http://www.rubyonrails.org"
- s.add_dependency('actionpack', '>= 1.5.0' + PKG_BUILD)
- s.add_dependency('activerecord', '>= 1.7.0' + PKG_BUILD)
- s.add_dependency('activesupport', '>= 1.0.0' + PKG_BUILD)
+ s.add_dependency('actionpack', '>= 1.5.1' + PKG_BUILD)
+ s.add_dependency('activerecord', '>= 1.8.0' + PKG_BUILD)
+ s.add_dependency('activesupport', '>= 1.0.1' + PKG_BUILD)
s.has_rdoc = true
s.requirements << 'none'
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index 23daf02123..30864d33ef 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -1,4 +1,4 @@
-*SVN*
+*1.8.0* (7th March, 2005)
* Added ActiveRecord::Base.colorize_logging to control whether to use colors in logs or not (on by default)
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG
index 9153603927..6bd2d81f72 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -1,4 +1,4 @@
-*SVN*
+*1.0.1* (7th March, 2005)
* Fixed Hash#indifferent_access to also deal with include? and fetch and nested hashes #726 [Nicholas Seckar]
diff --git a/activesupport/Rakefile b/activesupport/Rakefile
index 43c5751cdf..e3d2a81fd5 100644
--- a/activesupport/Rakefile
+++ b/activesupport/Rakefile
@@ -5,7 +5,7 @@ require 'rake/contrib/rubyforgepublisher'
PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
PKG_NAME = 'activesupport'
-PKG_VERSION = '1.0.0' + PKG_BUILD
+PKG_VERSION = '1.0.1' + PKG_BUILD
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
task :default => :test
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>).