aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2006-04-06 05:26:14 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2006-04-06 05:26:14 +0000
commit944ae628f529a5392a543a88186415e87f462009 (patch)
tree75da7630316ca0c66c41074f85144cdac6c792d0
parent26e381302c7eee09b8d03d32dc7a8233098a9abf (diff)
downloadrails-944ae628f529a5392a543a88186415e87f462009.tar.gz
rails-944ae628f529a5392a543a88186415e87f462009.tar.bz2
rails-944ae628f529a5392a543a88186415e87f462009.zip
Update versions for Rails 1.1.1
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4183 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rw-r--r--actionmailer/CHANGELOG5
-rwxr-xr-xactionmailer/Rakefile2
-rw-r--r--actionmailer/lib/action_mailer/version.rb2
-rw-r--r--actionpack/CHANGELOG2
-rwxr-xr-xactionpack/Rakefile2
-rw-r--r--actionpack/lib/action_pack/version.rb2
-rw-r--r--actionwebservice/CHANGELOG3
-rw-r--r--actionwebservice/Rakefile4
-rw-r--r--actionwebservice/lib/action_web_service/version.rb2
-rw-r--r--activerecord/CHANGELOG2
-rwxr-xr-xactiverecord/Rakefile2
-rw-r--r--activerecord/lib/active_record/version.rb2
-rw-r--r--activesupport/CHANGELOG3
-rw-r--r--activesupport/lib/active_support/version.rb2
-rw-r--r--railties/CHANGELOG2
-rw-r--r--railties/Rakefile12
-rw-r--r--railties/lib/rails/version.rb2
17 files changed, 29 insertions, 22 deletions
diff --git a/actionmailer/CHANGELOG b/actionmailer/CHANGELOG
index c55061b1ce..2ceba66d18 100644
--- a/actionmailer/CHANGELOG
+++ b/actionmailer/CHANGELOG
@@ -1,3 +1,8 @@
+*1.2.1* (April 6th, 2005)
+
+* Be part of Rails 1.1.1
+
+
*1.2.0* (March 27th, 2005)
* Nil charset caused subject line to be improperly quoted in implicitly multipart messages #2662 [ehalvorsen+rails@runbox.com]
diff --git a/actionmailer/Rakefile b/actionmailer/Rakefile
index 3da850b966..3cf143b1e1 100755
--- a/actionmailer/Rakefile
+++ b/actionmailer/Rakefile
@@ -54,7 +54,7 @@ spec = Gem::Specification.new do |s|
s.rubyforge_project = "actionmailer"
s.homepage = "http://www.rubyonrails.org"
- s.add_dependency('actionpack', '= 1.12.0' + PKG_BUILD)
+ s.add_dependency('actionpack', '= 1.12.1' + PKG_BUILD)
s.has_rdoc = true
s.requirements << 'none'
diff --git a/actionmailer/lib/action_mailer/version.rb b/actionmailer/lib/action_mailer/version.rb
index 44e37853f1..ba6a301cf9 100644
--- a/actionmailer/lib/action_mailer/version.rb
+++ b/actionmailer/lib/action_mailer/version.rb
@@ -2,7 +2,7 @@ module ActionMailer
module VERSION #:nodoc:
MAJOR = 1
MINOR = 2
- TINY = 0
+ TINY = 1
STRING = [MAJOR, MINOR, TINY].join('.')
end
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index a2e223c5d0..22372b4d8a 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,4 +1,4 @@
-*SVN*
+*1.12.1* (April 6th, 2005)
* Update to Prototype 1.5.0_rc0 [Sam Stephenson]
diff --git a/actionpack/Rakefile b/actionpack/Rakefile
index f9b9acbb3b..2abdb816f7 100755
--- a/actionpack/Rakefile
+++ b/actionpack/Rakefile
@@ -68,7 +68,7 @@ spec = Gem::Specification.new do |s|
s.has_rdoc = true
s.requirements << 'none'
- s.add_dependency('activesupport', '= 1.3.0' + PKG_BUILD)
+ s.add_dependency('activesupport', '= 1.3.1' + PKG_BUILD)
s.require_path = 'lib'
s.autorequire = 'action_controller'
diff --git a/actionpack/lib/action_pack/version.rb b/actionpack/lib/action_pack/version.rb
index 8144599cbe..407e5480fe 100644
--- a/actionpack/lib/action_pack/version.rb
+++ b/actionpack/lib/action_pack/version.rb
@@ -2,7 +2,7 @@ module ActionPack #:nodoc:
module VERSION #:nodoc:
MAJOR = 1
MINOR = 12
- TINY = 0
+ TINY = 1
STRING = [MAJOR, MINOR, TINY].join('.')
end
diff --git a/actionwebservice/CHANGELOG b/actionwebservice/CHANGELOG
index 92af61c6ff..4245521e27 100644
--- a/actionwebservice/CHANGELOG
+++ b/actionwebservice/CHANGELOG
@@ -1,7 +1,8 @@
-*SVN*
+*1.1.1* (April 6th, 2005)
* Do not convert driver options to strings (#4499)
+
*1.1.0* (March 27th, 2005)
* Make ActiveWebService::Struct type reloadable
diff --git a/actionwebservice/Rakefile b/actionwebservice/Rakefile
index dedb2751d1..243065b025 100644
--- a/actionwebservice/Rakefile
+++ b/actionwebservice/Rakefile
@@ -71,8 +71,8 @@ spec = Gem::Specification.new do |s|
s.rubyforge_project = "aws"
s.homepage = "http://www.rubyonrails.org"
- s.add_dependency('actionpack', '= 1.12.0' + PKG_BUILD)
- s.add_dependency('activerecord', '= 1.14.0' + PKG_BUILD)
+ s.add_dependency('actionpack', '= 1.12.1' + PKG_BUILD)
+ s.add_dependency('activerecord', '= 1.14.1' + PKG_BUILD)
s.has_rdoc = true
s.requirements << 'none'
diff --git a/actionwebservice/lib/action_web_service/version.rb b/actionwebservice/lib/action_web_service/version.rb
index cc265fd9a2..0759e1d89a 100644
--- a/actionwebservice/lib/action_web_service/version.rb
+++ b/actionwebservice/lib/action_web_service/version.rb
@@ -2,7 +2,7 @@ module ActionWebService
module VERSION #:nodoc:
MAJOR = 1
MINOR = 1
- TINY = 0
+ TINY = 1
STRING = [MAJOR, MINOR, TINY].join('.')
end
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index ce49e8ca17..2c48239303 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -1,4 +1,4 @@
-*SVN*
+*1.14.1* (April 6th, 2005)
* Fixed that loading including associations returns all results if Load IDs For Limited Eager Loading returns none (closes #4528) [Rick]
diff --git a/activerecord/Rakefile b/activerecord/Rakefile
index 2a784a94a8..4d842bff60 100755
--- a/activerecord/Rakefile
+++ b/activerecord/Rakefile
@@ -106,7 +106,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.3.0' + PKG_BUILD)
+ s.add_dependency('activesupport', '= 1.3.1' + PKG_BUILD)
s.files.delete "test/fixtures/fixture_database.sqlite"
s.files.delete "test/fixtures/fixture_database_2.sqlite"
diff --git a/activerecord/lib/active_record/version.rb b/activerecord/lib/active_record/version.rb
index b98987e079..a8bf50c0f3 100644
--- a/activerecord/lib/active_record/version.rb
+++ b/activerecord/lib/active_record/version.rb
@@ -2,7 +2,7 @@ module ActiveRecord
module VERSION #:nodoc:
MAJOR = 1
MINOR = 14
- TINY = 0
+ TINY = 1
STRING = [MAJOR, MINOR, TINY].join('.')
end
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG
index 18017ea783..66c9fe2671 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -1,4 +1,4 @@
-* SVN *
+*1.3.1* (April 6th, 2005)
* Clean paths inside of exception messages and traces. [Nicholas Seckar]
@@ -6,6 +6,7 @@
* provide an empty Dependencies::LoadingModule.load which prints deprecation warnings. Lets 1.0 applications function with .13-style environment.rb.
+
*1.3.0* (March 27th, 2005)
* When possible, avoid incorrectly obtaining constants from parent modules. Fixes #4221. [Nicholas Seckar]
diff --git a/activesupport/lib/active_support/version.rb b/activesupport/lib/active_support/version.rb
index 5332627a37..8e0ef72982 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 = 3
- TINY = 0
+ TINY = 1
STRING = [MAJOR, MINOR, TINY].join('.')
end
diff --git a/railties/CHANGELOG b/railties/CHANGELOG
index 7f427bfd4f..f647c083ad 100644
--- a/railties/CHANGELOG
+++ b/railties/CHANGELOG
@@ -1,4 +1,4 @@
-*SVN*
+*1.1.1* (April 6th, 2005)
* Update to Prototype 1.5.0_rc0 [Sam Stephenson]
diff --git a/railties/Rakefile b/railties/Rakefile
index c2ad419eae..db08f964b6 100644
--- a/railties/Rakefile
+++ b/railties/Rakefile
@@ -277,12 +277,12 @@ spec = Gem::Specification.new do |s|
on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.
EOF
- s.add_dependency('rake', '>= 0.7.0')
- s.add_dependency('activesupport', '= 1.3.0' + PKG_BUILD)
- s.add_dependency('activerecord', '= 1.14.0' + PKG_BUILD)
- s.add_dependency('actionpack', '= 1.12.0' + PKG_BUILD)
- s.add_dependency('actionmailer', '= 1.2.0' + PKG_BUILD)
- s.add_dependency('actionwebservice', '= 1.1.0' + PKG_BUILD)
+ s.add_dependency('rake', '>= 0.7.1')
+ s.add_dependency('activesupport', '= 1.3.1' + PKG_BUILD)
+ s.add_dependency('activerecord', '= 1.14.1' + PKG_BUILD)
+ s.add_dependency('actionpack', '= 1.12.1' + PKG_BUILD)
+ s.add_dependency('actionmailer', '= 1.2.1' + PKG_BUILD)
+ s.add_dependency('actionwebservice', '= 1.1.1' + PKG_BUILD)
s.rdoc_options << '--exclude' << '.'
s.has_rdoc = false
diff --git a/railties/lib/rails/version.rb b/railties/lib/rails/version.rb
index d48ace3a20..ec2ff4dba3 100644
--- a/railties/lib/rails/version.rb
+++ b/railties/lib/rails/version.rb
@@ -2,7 +2,7 @@ module Rails
module VERSION #:nodoc:
MAJOR = 1
MINOR = 1
- TINY = 0
+ TINY = 1
STRING = [MAJOR, MINOR, TINY].join('.')
end