diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2006-04-06 05:26:14 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2006-04-06 05:26:14 +0000 |
commit | 944ae628f529a5392a543a88186415e87f462009 (patch) | |
tree | 75da7630316ca0c66c41074f85144cdac6c792d0 /actionwebservice | |
parent | 26e381302c7eee09b8d03d32dc7a8233098a9abf (diff) | |
download | rails-944ae628f529a5392a543a88186415e87f462009.tar.gz rails-944ae628f529a5392a543a88186415e87f462009.tar.bz2 rails-944ae628f529a5392a543a88186415e87f462009.zip |
Update versions for Rails 1.1.1
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4183 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionwebservice')
-rw-r--r-- | actionwebservice/CHANGELOG | 3 | ||||
-rw-r--r-- | actionwebservice/Rakefile | 4 | ||||
-rw-r--r-- | actionwebservice/lib/action_web_service/version.rb | 2 |
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 |