aboutsummaryrefslogtreecommitdiffstats
path: root/actionwebservice
diff options
context:
space:
mode:
Diffstat (limited to 'actionwebservice')
-rw-r--r--actionwebservice/CHANGELOG5
-rw-r--r--actionwebservice/Rakefile6
2 files changed, 8 insertions, 3 deletions
diff --git a/actionwebservice/CHANGELOG b/actionwebservice/CHANGELOG
index a9974b7d8b..c455bbff4c 100644
--- a/actionwebservice/CHANGELOG
+++ b/actionwebservice/CHANGELOG
@@ -1,3 +1,8 @@
+*0.7.1* (20th April, 2005)
+
+* Depend on Active Record 1.10.1 and Action Pack 1.8.1
+
+
*0.7.0* (19th April, 2005)
* When casting structured types, don't try to send obj.name= unless obj responds to it, causes casting to be less likely to fail for XML-RPC
diff --git a/actionwebservice/Rakefile b/actionwebservice/Rakefile
index 4b79384c5d..6a470792e9 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.7.0' + PKG_BUILD
+PKG_VERSION = '0.7.1' + PKG_BUILD
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
PKG_DESTINATION = ENV["RAILS_PKG_DESTINATION"] || "../#{PKG_NAME}"
@@ -62,8 +62,8 @@ spec = Gem::Specification.new do |s|
s.rubyforge_project = "aws"
s.homepage = "http://www.rubyonrails.org"
- s.add_dependency('actionpack', '= 1.8.0' + PKG_BUILD)
- s.add_dependency('activerecord', '= 1.10.0' + PKG_BUILD)
+ s.add_dependency('actionpack', '= 1.8.1' + PKG_BUILD)
+ s.add_dependency('activerecord', '= 1.10.1' + PKG_BUILD)
s.add_dependency('activesupport', '= 1.0.4' + PKG_BUILD)
s.has_rdoc = true