mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Really ready for push
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2686 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
parent
b437eee41d
commit
e3e5d60bcd
5 changed files with 14 additions and 4 deletions
|
@ -1,3 +1,8 @@
|
|||
*1.1.1* (October 19th, 2005)
|
||||
|
||||
* Upgraded to Action Pack 1.10.1
|
||||
|
||||
|
||||
*1.1.0* (October 16th, 2005)
|
||||
|
||||
* Update and extend documentation (rdoc)
|
||||
|
|
|
@ -2,7 +2,7 @@ module ActionMailer
|
|||
module Version #:nodoc:
|
||||
MAJOR = 1
|
||||
MINOR = 1
|
||||
TINY = 0
|
||||
TINY = 1
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY].join('.')
|
||||
end
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
*0.9.1* (October 19th, 2005)
|
||||
|
||||
* Upgraded to Action Pack 1.10.1 and Active Record 1.12.1
|
||||
|
||||
|
||||
*0.9.0* (October 16th, 2005)
|
||||
|
||||
* Fix invalid XML request generation bug in test_invoke [Ken Barker]
|
||||
|
|
|
@ -2,7 +2,7 @@ module ActionWebService
|
|||
module Version
|
||||
MAJOR = 0
|
||||
MINOR = 9
|
||||
TINY = 0
|
||||
TINY = 1
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY].join('.')
|
||||
end
|
||||
|
|
|
@ -276,8 +276,8 @@ spec = Gem::Specification.new do |s|
|
|||
s.add_dependency('activesupport', '= 1.2.0' + PKG_BUILD)
|
||||
s.add_dependency('activerecord', '= 1.12.1' + PKG_BUILD)
|
||||
s.add_dependency('actionpack', '= 1.10.1' + PKG_BUILD)
|
||||
s.add_dependency('actionmailer', '= 1.1.0' + PKG_BUILD)
|
||||
s.add_dependency('actionwebservice', '= 0.9.0' + PKG_BUILD)
|
||||
s.add_dependency('actionmailer', '= 1.1.1' + PKG_BUILD)
|
||||
s.add_dependency('actionwebservice', '= 0.9.1' + PKG_BUILD)
|
||||
|
||||
s.rdoc_options << '--exclude' << '.'
|
||||
s.has_rdoc = false
|
||||
|
|
Loading…
Reference in a new issue