diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-03-27 14:10:42 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-03-27 14:10:42 +0000 |
commit | 04c7e82369f179918d6b4177bcb8121a294afd73 (patch) | |
tree | 6ff822c74f10cb115137ea5552f2f5a329fe4d41 /actionwebservice | |
parent | 55cb8c8f0d36b02a005ba784e5c4794c1d40d74a (diff) | |
download | rails-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 'actionwebservice')
-rw-r--r-- | actionwebservice/CHANGELOG | 5 | ||||
-rw-r--r-- | actionwebservice/Rakefile | 9 |
2 files changed, 8 insertions, 6 deletions
diff --git a/actionwebservice/CHANGELOG b/actionwebservice/CHANGELOG index 7e062fb682..8aa92ba880 100644 --- a/actionwebservice/CHANGELOG +++ b/actionwebservice/CHANGELOG @@ -1,7 +1,8 @@ -*0.7.0* (Unreleased) +*0.6.2* (27th March, 2005) * Allow method declarations for direct dispatching to declare parameters as well. We treat an arity of < 0 or > 0 as an indication that we should send through parameters. Closes #939. - + + *0.6.1* (22th March, 2005) * Fix that method response QNames mismatched with that declared in the WSDL, makes SOAP::WSDLDriverFactory work against AWS again diff --git a/actionwebservice/Rakefile b/actionwebservice/Rakefile index d676d2e81f..a54d72069f 100644 --- a/actionwebservice/Rakefile +++ b/actionwebservice/Rakefile @@ -9,7 +9,7 @@ require 'fileutils' PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' PKG_NAME = 'actionwebservice' -PKG_VERSION = '0.6.1' + PKG_BUILD +PKG_VERSION = '0.6.2' + PKG_BUILD PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" PKG_DESTINATION = ENV["RAILS_PKG_DESTINATION"] || "../#{PKG_NAME}" @@ -35,6 +35,7 @@ Rake::RDocTask.new { |rdoc| rdoc.rdoc_dir = 'doc' rdoc.title = "Action Web Service -- Web services for Action Pack" rdoc.options << '--line-numbers --inline-source --main README --accessor class_inheritable_option=RW' + rdoc.template = "#{ENV['template']}.rb" if ENV['template'] rdoc.rdoc_files.include('README') rdoc.rdoc_files.include('CHANGELOG') rdoc.rdoc_files.include('lib/action_web_service.rb') @@ -61,9 +62,9 @@ spec = Gem::Specification.new do |s| s.rubyforge_project = "aws" s.homepage = "http://www.rubyonrails.org" - s.add_dependency('actionpack', '= 1.6.0' + PKG_BUILD) - s.add_dependency('activerecord', '= 1.9.0' + PKG_BUILD) - s.add_dependency('activesupport', '= 1.0.2' + PKG_BUILD) + s.add_dependency('actionpack', '= 1.7.0' + PKG_BUILD) + s.add_dependency('activerecord', '= 1.9.1' + PKG_BUILD) + s.add_dependency('activesupport', '= 1.0.3' + PKG_BUILD) s.has_rdoc = true s.requirements << 'none' |