aboutsummaryrefslogtreecommitdiffstats
path: root/actionwebservice
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-04-19 16:34:44 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-04-19 16:34:44 +0000
commit77af61be40256d1e9e238d093bbd1ffb95263c67 (patch)
tree391d30dbf5998f9948db6b686bad1683e977a710 /actionwebservice
parent6f34400086857bf1ed790e8a46f10be5debe5d53 (diff)
downloadrails-77af61be40256d1e9e238d093bbd1ffb95263c67.tar.gz
rails-77af61be40256d1e9e238d093bbd1ffb95263c67.tar.bz2
rails-77af61be40256d1e9e238d093bbd1ffb95263c67.zip
Added xml_http_request/xhr method for simulating XMLHttpRequest in functional tests #1151 [Sam Stephenson]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1230 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
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