aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--actionpack/CHANGELOG4
-rwxr-xr-xactionpack/Rakefile2
-rw-r--r--actionpack/install.rb1
-rw-r--r--activerecord/CHANGELOG2
-rwxr-xr-xactiverecord/Rakefile2
-rw-r--r--activerecord/install.rb1
-rw-r--r--railties/CHANGELOG4
-rw-r--r--railties/Rakefile6
8 files changed, 14 insertions, 8 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index c00d72230e..a4ca2ec3fc 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,4 +1,6 @@
-*SVN*
+*1.4.0* (January 25th, 2005)
+
+* Fixed problems with ActiveRecordStore under the development environment in Rails
* Fixed the ordering of attributes in the xml-decleration of Builder #540 [woeye]
diff --git a/actionpack/Rakefile b/actionpack/Rakefile
index f366b77ff5..e19025720e 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.1' + PKG_BUILD
+PKG_VERSION = '1.4.0' + PKG_BUILD
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
desc "Default Task"
diff --git a/actionpack/install.rb b/actionpack/install.rb
index d2e4e24ca8..cd83b1a42c 100644
--- a/actionpack/install.rb
+++ b/actionpack/install.rb
@@ -65,6 +65,7 @@ files = %w-
action_controller/support/clean_logger.rb
action_controller/support/core_ext/hash/keys.rb
action_controller/support/core_ext/hash.rb
+ action_controller/support/core_ext/object_and_class.rb
action_controller/support/core_ext/numeric/bytes.rb
action_controller/support/core_ext/numeric/time.rb
action_controller/support/core_ext/numeric.rb
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index 3b9e273c91..167a548c5a 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -1,4 +1,4 @@
-*SVN*
+*1.6.0* (January 25th, 2005)
* Added that has_many association build and create methods can take arrays of record data like Base#create and Base#build to build/create multiple records at once.
diff --git a/activerecord/Rakefile b/activerecord/Rakefile
index 94af771bca..863a65f021 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.1' + PKG_BUILD
+PKG_VERSION = '1.6.0' + PKG_BUILD
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
PKG_FILES = FileList[
diff --git a/activerecord/install.rb b/activerecord/install.rb
index 0b8f89dfdf..7b04e952b6 100644
--- a/activerecord/install.rb
+++ b/activerecord/install.rb
@@ -52,6 +52,7 @@ files = %w-
active_record/support/clean_logger.rb
active_record/support/core_ext/hash/keys.rb
active_record/support/core_ext/hash.rb
+ active_record/support/core_ext/object_and_class.rb
active_record/support/core_ext/numeric/bytes.rb
active_record/support/core_ext/numeric/time.rb
active_record/support/core_ext/numeric.rb
diff --git a/railties/CHANGELOG b/railties/CHANGELOG
index dd3c7381c1..f3e4c6c604 100644
--- a/railties/CHANGELOG
+++ b/railties/CHANGELOG
@@ -1,4 +1,4 @@
-*SVN*
+*0.9.5* (January 25th, 2005)
* Fixed dependency reloading by switching to a remove_const approach where all Active Records, Active Record Observers, and Action Controllers are reloading by undefining their classes. This enables you to remove methods in all three types and see the change reflected immediately and it fixes #539. This also means that only those three types of classes will benefit from the const_missing and reloading approach. If you want other classes (like some in lib/) to reload, you must use require_dependency to do it.
@@ -16,6 +16,8 @@
* Fixed that FCGI can also display SyntaxErrors
+* Upgraded to Active Record 1.6.0, Action Pack 1.4.0
+
*0.9.4.1* (January 18th, 2005)
diff --git a/railties/Rakefile b/railties/Rakefile
index 383a5b7a1f..2b3bbad905 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.1' + PKG_BUILD
+PKG_VERSION = '0.9.5' + PKG_BUILD
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
PKG_DESTINATION = ENV["RAILS_PKG_DESTINATION"] || "../#{PKG_NAME}"
@@ -247,8 +247,8 @@ spec = Gem::Specification.new do |s|
EOF
s.add_dependency('rake', '>= 0.4.15')
- s.add_dependency('activerecord', '>= 1.5.1')
- s.add_dependency('actionpack', '>= 1.3.1')
+ s.add_dependency('activerecord', '>= 1.6.0')
+ s.add_dependency('actionpack', '>= 1.4.0')
s.add_dependency('actionmailer', '>= 0.6.1')
s.has_rdoc = false