diff options
Diffstat (limited to 'actionwebservice')
-rw-r--r-- | actionwebservice/CHANGELOG | 5 | ||||
-rw-r--r-- | actionwebservice/Rakefile | 4 | ||||
-rw-r--r-- | actionwebservice/lib/action_web_service/version.rb | 2 |
3 files changed, 8 insertions, 3 deletions
diff --git a/actionwebservice/CHANGELOG b/actionwebservice/CHANGELOG index 496b3bf461..cb55f0d261 100644 --- a/actionwebservice/CHANGELOG +++ b/actionwebservice/CHANGELOG @@ -1,3 +1,8 @@ +*0.9.3* (November 7th, 2005) + +* Upgraded to Action Pack 1.11.0 and Active Record 1.13.0 + + *0.9.2* (October 26th, 2005) * Upgraded to Action Pack 1.10.2 and Active Record 1.12.2 diff --git a/actionwebservice/Rakefile b/actionwebservice/Rakefile index f0086c5850..468b5fe78b 100644 --- a/actionwebservice/Rakefile +++ b/actionwebservice/Rakefile @@ -63,8 +63,8 @@ spec = Gem::Specification.new do |s| s.rubyforge_project = "aws" s.homepage = "http://www.rubyonrails.org" - s.add_dependency('actionpack', '= 1.10.2' + PKG_BUILD) - s.add_dependency('activerecord', '= 1.12.2' + PKG_BUILD) + s.add_dependency('actionpack', '= 1.11.0' + PKG_BUILD) + s.add_dependency('activerecord', '= 1.13.0' + 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 8ae372ce36..94f9251d79 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 MAJOR = 0 MINOR = 9 - TINY = 2 + TINY = 3 STRING = [MAJOR, MINOR, TINY].join('.') end |