aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-07-11 07:36:18 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-07-11 07:36:18 +0000
commit4259199c2cfd3ab4d77acadc8ba158096a243ac0 (patch)
tree36960b80f5cad9c632f35fb02507381dbc052b67 /railties
parentfede0f573ebe64135c60d1ca2ef0c6e98819ba9e (diff)
downloadrails-4259199c2cfd3ab4d77acadc8ba158096a243ac0.tar.gz
rails-4259199c2cfd3ab4d77acadc8ba158096a243ac0.tar.bz2
rails-4259199c2cfd3ab4d77acadc8ba158096a243ac0.zip
Made ready for release of 0.13.1
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1814 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties')
-rw-r--r--railties/CHANGELOG4
-rw-r--r--railties/Rakefile14
2 files changed, 9 insertions, 9 deletions
diff --git a/railties/CHANGELOG b/railties/CHANGELOG
index 8bba746431..cc0cabe9f0 100644
--- a/railties/CHANGELOG
+++ b/railties/CHANGELOG
@@ -1,4 +1,4 @@
-*SVN*
+*0.13.1* (11 July, 2005)
* Fixed that each request with the WEBrick adapter would open a new database connection #1685 [Sam Stephenson]
@@ -11,7 +11,7 @@
* Improved documentation for environment config files #1625 [court3nay@gmail.com]
-*0.13.0*
+*0.13.0* (6 July, 2005)
* Changed the default logging level in config/environment.rb to INFO for production (so SQL statements won't be logged)
diff --git a/railties/Rakefile b/railties/Rakefile
index ec706f827d..8492666f87 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.13.0' + PKG_BUILD
+PKG_VERSION = '0.13.1' + PKG_BUILD
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
PKG_DESTINATION = ENV["RAILS_PKG_DESTINATION"] || "../#{PKG_NAME}"
@@ -247,15 +247,15 @@ spec = Gem::Specification.new do |s|
s.summary = "Web-application framework with template engine, control-flow layer, and ORM."
s.description = <<-EOF
Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick
- on top of either MySQL, PostgreSQL, or SQLite with eRuby-based templates.
+ on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.
EOF
s.add_dependency('rake', '>= 0.5.3')
- s.add_dependency('activesupport', '= 1.1.0' + PKG_BUILD)
- s.add_dependency('activerecord', '= 1.11.0' + PKG_BUILD)
- s.add_dependency('actionpack', '= 1.9.0' + PKG_BUILD)
- s.add_dependency('actionmailer', '= 1.0.0' + PKG_BUILD)
- s.add_dependency('actionwebservice', '= 0.8.0' + PKG_BUILD)
+ s.add_dependency('activesupport', '= 1.1.1' + PKG_BUILD)
+ s.add_dependency('activerecord', '= 1.11.1' + PKG_BUILD)
+ s.add_dependency('actionpack', '= 1.9.1' + PKG_BUILD)
+ s.add_dependency('actionmailer', '= 1.0.1' + PKG_BUILD)
+ s.add_dependency('actionwebservice', '= 0.8.1' + PKG_BUILD)
s.rdoc_options << '--exclude' << '.'
s.has_rdoc = false