aboutsummaryrefslogtreecommitdiffstats
path: root/actionwebservice
diff options
context:
space:
mode:
Diffstat (limited to 'actionwebservice')
-rw-r--r--actionwebservice/CHANGELOG3
-rw-r--r--actionwebservice/Rakefile4
-rw-r--r--actionwebservice/lib/action_web_service/version.rb2
3 files changed, 5 insertions, 4 deletions
diff --git a/actionwebservice/CHANGELOG b/actionwebservice/CHANGELOG
index 92af61c6ff..4245521e27 100644
--- a/actionwebservice/CHANGELOG
+++ b/actionwebservice/CHANGELOG
@@ -1,7 +1,8 @@
-*SVN*
+*1.1.1* (April 6th, 2005)
* Do not convert driver options to strings (#4499)
+
*1.1.0* (March 27th, 2005)
* Make ActiveWebService::Struct type reloadable
diff --git a/actionwebservice/Rakefile b/actionwebservice/Rakefile
index dedb2751d1..243065b025 100644
--- a/actionwebservice/Rakefile
+++ b/actionwebservice/Rakefile
@@ -71,8 +71,8 @@ spec = Gem::Specification.new do |s|
s.rubyforge_project = "aws"
s.homepage = "http://www.rubyonrails.org"
- s.add_dependency('actionpack', '= 1.12.0' + PKG_BUILD)
- s.add_dependency('activerecord', '= 1.14.0' + PKG_BUILD)
+ s.add_dependency('actionpack', '= 1.12.1' + PKG_BUILD)
+ s.add_dependency('activerecord', '= 1.14.1' + 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 cc265fd9a2..0759e1d89a 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 #:nodoc:
MAJOR = 1
MINOR = 1
- TINY = 0
+ TINY = 1
STRING = [MAJOR, MINOR, TINY].join('.')
end