aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-03-27 14:10:42 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-03-27 14:10:42 +0000
commit04c7e82369f179918d6b4177bcb8121a294afd73 (patch)
tree6ff822c74f10cb115137ea5552f2f5a329fe4d41 /activesupport
parent55cb8c8f0d36b02a005ba784e5c4794c1d40d74a (diff)
downloadrails-04c7e82369f179918d6b4177bcb8121a294afd73.tar.gz
rails-04c7e82369f179918d6b4177bcb8121a294afd73.tar.bz2
rails-04c7e82369f179918d6b4177bcb8121a294afd73.zip
Made ready for the release of 0.11.1
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1023 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/CHANGELOG4
-rw-r--r--activesupport/Rakefile3
2 files changed, 4 insertions, 3 deletions
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG
index 9adac58cdf..c6af6c288d 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -1,4 +1,4 @@
-*SVN*
+*1.0.3* (27th March, 2005)
* Fixed Inflector.pluralize to handle capitalized words #932 [bitsweat]
@@ -11,7 +11,7 @@
1/0 rescue nil # BAD, EVIL, DIRTY.
-*1.0.2*
+*1.0.2* (22th March, 2005)
* Added Kernel#returning -- a Ruby-ized realization of the K combinator, courtesy of Mikael Brockman.
diff --git a/activesupport/Rakefile b/activesupport/Rakefile
index 86137a2074..99e49e9083 100644
--- a/activesupport/Rakefile
+++ b/activesupport/Rakefile
@@ -5,7 +5,7 @@ require 'rake/contrib/rubyforgepublisher'
PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
PKG_NAME = 'activesupport'
-PKG_VERSION = '1.0.2' + PKG_BUILD
+PKG_VERSION = '1.0.3' + PKG_BUILD
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
RELEASE_NAME = "REL #{PKG_VERSION}"
@@ -27,6 +27,7 @@ Rake::RDocTask.new { |rdoc|
rdoc.rdoc_dir = 'doc'
rdoc.title = "Active Support -- Utility classes and standard library extensions from Rails"
rdoc.options << '--line-numbers --inline-source --main README'
+ rdoc.template = "#{ENV['template']}.rb" if ENV['template']
rdoc.rdoc_files.include('README', 'CHANGELOG')
rdoc.rdoc_files.include('lib/active_support.rb')
rdoc.rdoc_files.include('lib/active_support/*.rb')