aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--actionmailer/CHANGELOG2
-rw-r--r--actionpack/CHANGELOG2
-rwxr-xr-xactionpack/Rakefile2
-rw-r--r--activerecord/CHANGELOG2
-rwxr-xr-xactiverecord/Rakefile2
-rwxr-xr-xpushgems.rb8
-rw-r--r--railties/CHANGELOG4
-rw-r--r--railties/Rakefile8
8 files changed, 20 insertions, 10 deletions
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