From a5364fb3ac5eec8a9b4a9207988d4b0cf1037c54 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Tue, 18 Jan 2005 14:13:12 +0000 Subject: Made ready for release of 0.9.4.1 git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@458 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionmailer/CHANGELOG | 2 +- actionpack/CHANGELOG | 2 +- actionpack/Rakefile | 2 +- activerecord/CHANGELOG | 2 +- activerecord/Rakefile | 2 +- pushgems.rb | 8 ++++++++ railties/CHANGELOG | 4 +++- railties/Rakefile | 8 ++++---- 8 files changed, 20 insertions(+), 10 deletions(-) create mode 100755 pushgems.rb diff --git a/actionmailer/CHANGELOG b/actionmailer/CHANGELOG index d6c7e62777..dfe93343f5 100644 --- a/actionmailer/CHANGELOG +++ b/actionmailer/CHANGELOG @@ -1,4 +1,4 @@ -*SVN* +*0.6.1* (January 18th, 2005) * Fixed sending of emails to use Tmail#from not the deprecated Tmail#from_address diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index 934538fcee..d8245a1d81 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,4 +1,4 @@ -*SVN* +*1.3.1* (January 18th, 2005) * Fixed a bug where cookies wouldn't be set if a symbol was used instead of a string as the key diff --git a/actionpack/Rakefile b/actionpack/Rakefile index adafdf728a..f366b77ff5 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.3.0' + PKG_BUILD +PKG_VERSION = '1.3.1' + PKG_BUILD PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" desc "Default Task" diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG index a3bc6f4806..37212abee3 100644 --- a/activerecord/CHANGELOG +++ b/activerecord/CHANGELOG @@ -1,4 +1,4 @@ -*SVN* +*1.5.1* (January 18th, 2005) * Fixed that the belongs_to and has_one proxy would fail a test like 'if project.manager' -- this unfortunately also means that you can't call methods like project.manager.build unless there already is a manager on the project #492 [Tim Bates] diff --git a/activerecord/Rakefile b/activerecord/Rakefile index b1b865bd2e..94af771bca 100755 --- a/activerecord/Rakefile +++ b/activerecord/Rakefile @@ -8,7 +8,7 @@ require 'rake/contrib/rubyforgepublisher' PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' PKG_NAME = 'activerecord' -PKG_VERSION = '1.5.0' + PKG_BUILD +PKG_VERSION = '1.5.1' + PKG_BUILD PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" PKG_FILES = FileList[ diff --git a/pushgems.rb b/pushgems.rb new file mode 100755 index 0000000000..a754b56647 --- /dev/null +++ b/pushgems.rb @@ -0,0 +1,8 @@ +#!/usr/local/bin/ruby + +build_number = `svn log -q -rhead http://dev.rubyonrails.org/svn/rails`.scan(/r([0-9]*)/).first.first.to_i + +%w( actionmailer actionpack activerecord railties ).each do |pkg| + puts "Pushing: #{pkg} (#{build_number})" + `cd #{pkg} && PKG_BUILD=#{build_number} rake pgem && cd ..` +end \ No newline at end of file diff --git a/railties/CHANGELOG b/railties/CHANGELOG index 993d4a6db3..1cbe508bd8 100644 --- a/railties/CHANGELOG +++ b/railties/CHANGELOG @@ -1,9 +1,11 @@ -*SVN* +*0.9.4.1* (January 18th, 2005) * Added 5-second timeout to WordNet alternatives on creating reserved-word models #501 [Marcel Molina] * Fixed binding of caller #496 [Alexey] +* Upgraded to Active Record 1.5.1, Action Pack 1.3.1, Action Mailer 0.6.1 + *0.9.4* (January 17th, 2005) diff --git a/railties/Rakefile b/railties/Rakefile index 55c0e176f1..c3cf562427 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.9.4' + PKG_BUILD +PKG_VERSION = '0.9.4.1' + PKG_BUILD PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" PKG_DESTINATION = ENV["RAILS_PKG_DESTINATION"] || "../#{PKG_NAME}" @@ -245,9 +245,9 @@ spec = Gem::Specification.new do |s| EOF s.add_dependency('rake', '>= 0.4.15') - s.add_dependency('activerecord', '>= 1.5.0') - s.add_dependency('actionpack', '>= 1.3.0') - s.add_dependency('actionmailer', '>= 0.6.0') + s.add_dependency('activerecord', '>= 1.5.1') + s.add_dependency('actionpack', '>= 1.3.1') + s.add_dependency('actionmailer', '>= 0.6.1') s.has_rdoc = false -- cgit v1.2.3