mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Getting ready for 0.14.0 (1.0.0 Release Candidate 1)
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2660 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
parent
8d9ee72a78
commit
f4aaa26eb3
12 changed files with 19 additions and 18 deletions
|
@ -1,4 +1,4 @@
|
|||
*SVN*
|
||||
*1.1.0* (October 16th, 2005)
|
||||
|
||||
* Update and extend documentation (rdoc)
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
module ActionMailer
|
||||
module Version #:nodoc:
|
||||
MAJOR = 1
|
||||
MINOR = 0
|
||||
TINY = 1
|
||||
MINOR = 1
|
||||
TINY = 0
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY].join('.')
|
||||
end
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
*SVN*
|
||||
*1.10.0* (October 16th, 2005)
|
||||
|
||||
* Improve line number detection for template errors [Nicholas Seckar]
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
module ActionPack
|
||||
module Version #:nodoc:
|
||||
MAJOR = 1
|
||||
MINOR = 9
|
||||
TINY = 1
|
||||
MINOR = 10
|
||||
TINY = 0
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY].join('.')
|
||||
end
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
*SVN*
|
||||
*0.9.0* (October 16th, 2005)
|
||||
|
||||
* Fix invalid XML request generation bug in test_invoke [Ken Barker]
|
||||
|
||||
|
@ -12,6 +12,7 @@
|
|||
|
||||
* ActionWebService now always returns UTF-8 responses.
|
||||
|
||||
|
||||
*0.8.1* (11 July, 2005)
|
||||
|
||||
* Fix scaffolding for Action Pack controller changes
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
module ActionWebService
|
||||
module Version
|
||||
MAJOR = 0
|
||||
MINOR = 8
|
||||
TINY = 1
|
||||
MINOR = 9
|
||||
TINY = 0
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY].join('.')
|
||||
end
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
*SVN*
|
||||
*1.12.0* (October 16th, 2005)
|
||||
|
||||
* Update/clean up documentation (rdoc)
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
module ActiveRecord
|
||||
module Version #:nodoc:
|
||||
MAJOR = 1
|
||||
MINOR = 11
|
||||
TINY = 1
|
||||
MINOR = 12
|
||||
TINY = 0
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY].join('.')
|
||||
end
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
*SVN*
|
||||
*1.2.0* (October 16th, 2005)
|
||||
|
||||
* Update Exception extension to show the first few framework frames in an application trace. [Nicholas Seckar]
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
module ActiveSupport
|
||||
module Version #:nodoc:
|
||||
MAJOR = 1
|
||||
MINOR = 1
|
||||
TINY = 1
|
||||
MINOR = 2
|
||||
TINY = 0
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY].join('.')
|
||||
end
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
*SVN*
|
||||
*0.14.0* (October 16th, 2005)
|
||||
|
||||
* Moved generator folder from RAILS_ROOT/generators to RAILS_ROOT/lib/generators [Tobias Luetke]
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
module Rails
|
||||
module Version #:nodoc:
|
||||
MAJOR = 0
|
||||
MINOR = 13
|
||||
TINY = 1
|
||||
MINOR = 14
|
||||
TINY = 0
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY].join('.')
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue