aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-10-19 14:28:55 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-10-19 14:28:55 +0000
commit2555b885edc24f03d0d3006398f86a23d3d93800 (patch)
tree732542c9b7b1edce00330d3bf408e575950d64cc
parente3e5d60bcd639da34333514562f82f89fd0c00f0 (diff)
downloadrails-2555b885edc24f03d0d3006398f86a23d3d93800.tar.gz
rails-2555b885edc24f03d0d3006398f86a23d3d93800.tar.bz2
rails-2555b885edc24f03d0d3006398f86a23d3d93800.zip
Really ready for release
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2687 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rwxr-xr-xactionpack/Rakefile2
-rw-r--r--actionwebservice/Rakefile2
-rwxr-xr-xactiverecord/Rakefile2
-rw-r--r--activesupport/CHANGELOG2
-rw-r--r--activesupport/lib/active_support/version.rb2
-rw-r--r--railties/CHANGELOG5
-rw-r--r--railties/Rakefile2
-rw-r--r--railties/lib/rails_version.rb2
8 files changed, 9 insertions, 10 deletions
diff --git a/actionpack/Rakefile b/actionpack/Rakefile
index 7049b8659c..e8a3d22873 100755
--- a/actionpack/Rakefile
+++ b/actionpack/Rakefile
@@ -62,7 +62,7 @@ spec = Gem::Specification.new do |s|
s.has_rdoc = true
s.requirements << 'none'
- s.add_dependency('activesupport', '= 1.2.0' + PKG_BUILD)
+ s.add_dependency('activesupport', '= 1.2.1' + PKG_BUILD)
s.require_path = 'lib'
s.autorequire = 'action_controller'
diff --git a/actionwebservice/Rakefile b/actionwebservice/Rakefile
index d8fd678997..7e71ccb60f 100644
--- a/actionwebservice/Rakefile
+++ b/actionwebservice/Rakefile
@@ -65,7 +65,7 @@ spec = Gem::Specification.new do |s|
s.add_dependency('actionpack', '= 1.10.1' + PKG_BUILD)
s.add_dependency('activerecord', '= 1.12.1' + PKG_BUILD)
- s.add_dependency('activesupport', '= 1.2.0' + PKG_BUILD)
+ s.add_dependency('activesupport', '= 1.2.1' + PKG_BUILD)
s.has_rdoc = true
s.requirements << 'none'
diff --git a/activerecord/Rakefile b/activerecord/Rakefile
index 2f27a87bdd..c7dc13e51b 100755
--- a/activerecord/Rakefile
+++ b/activerecord/Rakefile
@@ -71,7 +71,7 @@ spec = Gem::Specification.new do |s|
s.files = s.files + Dir.glob( "#{dir}/**/*" ).delete_if { |item| item.include?( "\.svn" ) }
end
- s.add_dependency('activesupport', '= 1.2.0' + PKG_BUILD)
+ s.add_dependency('activesupport', '= 1.2.1' + PKG_BUILD)
s.files.delete "test/fixtures/fixture_database.sqlite"
s.files.delete "test/fixtures/fixture_database_2.sqlite"
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG
index b998d87d29..1020a96be4 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -1,3 +1,5 @@
+*1.2.1* (October 19th, 2005)
+
* Classify generated routing code as framework code to avoid appearing in application traces. [Nicholas Seckar]
* Show all framework frames in the framework trace. [Nicholas Seckar]
diff --git a/activesupport/lib/active_support/version.rb b/activesupport/lib/active_support/version.rb
index 7863412489..010cfa60e6 100644
--- a/activesupport/lib/active_support/version.rb
+++ b/activesupport/lib/active_support/version.rb
@@ -2,7 +2,7 @@ module ActiveSupport
module Version #:nodoc:
MAJOR = 1
MINOR = 2
- TINY = 0
+ TINY = 1
STRING = [MAJOR, MINOR, TINY].join('.')
end
diff --git a/railties/CHANGELOG b/railties/CHANGELOG
index a9358f9c1a..269b908f34 100644
--- a/railties/CHANGELOG
+++ b/railties/CHANGELOG
@@ -1,10 +1,7 @@
-*SVN*
+*0.14.1* (October 19th, 2005)
* Don't clean RAILS_ROOT on windows
-
-*0.14.1* (October 19th, 2005)
-
* Remove trailing '/' from RAILS_ROOT [Nicholas Seckar]
* Upgraded to Active Record 1.12.1 and Action Pack 1.10.1
diff --git a/railties/Rakefile b/railties/Rakefile
index d05468521a..c3c6033736 100644
--- a/railties/Rakefile
+++ b/railties/Rakefile
@@ -273,7 +273,7 @@ spec = Gem::Specification.new do |s|
EOF
s.add_dependency('rake', '>= 0.6.2')
- s.add_dependency('activesupport', '= 1.2.0' + PKG_BUILD)
+ s.add_dependency('activesupport', '= 1.2.1' + PKG_BUILD)
s.add_dependency('activerecord', '= 1.12.1' + PKG_BUILD)
s.add_dependency('actionpack', '= 1.10.1' + PKG_BUILD)
s.add_dependency('actionmailer', '= 1.1.1' + PKG_BUILD)
diff --git a/railties/lib/rails_version.rb b/railties/lib/rails_version.rb
index 01d9190521..03e4c10ef1 100644
--- a/railties/lib/rails_version.rb
+++ b/railties/lib/rails_version.rb
@@ -2,7 +2,7 @@ module Rails
module Version #:nodoc:
MAJOR = 0
MINOR = 14
- TINY = 0
+ TINY = 1
STRING = [MAJOR, MINOR, TINY].join('.')
end