Skip to content

Commit

Permalink
new version 2.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Kent Sibilev committed Mar 31, 2009
1 parent 9d30efa commit c076ac1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions Rakefile
Expand Up @@ -72,8 +72,8 @@ spec = Gem::Specification.new do |s|
s.rubyforge_project = "aws"
s.homepage = "http://www.rubyonrails.org"

s.add_dependency('actionpack', '= 2.2.2' + PKG_BUILD)
s.add_dependency('activerecord', '= 2.2.2' + PKG_BUILD)
s.add_dependency('actionpack', '= 2.3.2' + PKG_BUILD)
s.add_dependency('activerecord', '= 2.3.2' + PKG_BUILD)

s.has_rdoc = true
s.requirements << 'none'
Expand Down Expand Up @@ -170,4 +170,4 @@ task :release => [ :package ] do
rubyforge = RubyForge.new
rubyforge.login
rubyforge.add_release(PKG_NAME, PKG_NAME, "REL #{PKG_VERSION}", *packages)
end
end
6 changes: 3 additions & 3 deletions actionwebservice.gemspec
Expand Up @@ -3,15 +3,15 @@ Gem::Specification.new do |s|
s.name = 'actionwebservice'
s.summary = "Web service support for Action Pack."
s.description = %q{Adds WSDL/SOAP and XML-RPC web service support to Action Pack}
s.version = '2.2.2'
s.version = '2.3.2'

s.author = "Leon Breedt, Kent Sibilev"
s.email = "bitserf@gmail.com, ksibilev@yahoo.com"
s.rubyforge_project = "aws"
s.homepage = "http://www.rubyonrails.org"

s.add_dependency('actionpack', '= 2.2.2')
s.add_dependency('activerecord', '= 2.2.2')
s.add_dependency('actionpack', '= 2.3.2')
s.add_dependency('activerecord', '= 2.3.2')

s.has_rdoc = true
s.requirements << 'none'
Expand Down
4 changes: 2 additions & 2 deletions lib/action_web_service/version.rb
@@ -1,8 +1,8 @@
module ActionWebService
module VERSION #:nodoc:
MAJOR = 2
MINOR = 1
TINY = 0
MINOR = 3
TINY = 2

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down

0 comments on commit c076ac1

Please sign in to comment.