From 2555b885edc24f03d0d3006398f86a23d3d93800 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Wed, 19 Oct 2005 14:28:55 +0000 Subject: [PATCH] Really ready for release git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2687 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/Rakefile | 2 +- actionwebservice/Rakefile | 2 +- activerecord/Rakefile | 2 +- activesupport/CHANGELOG | 2 ++ activesupport/lib/active_support/version.rb | 2 +- railties/CHANGELOG | 5 +---- railties/Rakefile | 2 +- railties/lib/rails_version.rb | 2 +- 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