Assume that the next version is going to be 2.3 for now

This commit is contained in:
David Heinemeier Hansson
2008-11-19 14:12:38 +01:00
parent e442448fa3
commit 51a19ae2bf
15 changed files with 25 additions and 25 deletions

View File

@@ -1,4 +1,4 @@
*2.3.0/3.0*
*2.3.0 [Edge]*
* Changed the default of ActionView#render to assume partials instead of files when not given an options hash [DHH]. Examples:

View File

@@ -80,7 +80,7 @@ spec = Gem::Specification.new do |s|
s.has_rdoc = true
s.requirements << 'none'
s.add_dependency('activesupport', '= 2.2.1' + PKG_BUILD)
s.add_dependency('activesupport', '= 2.3.0' + PKG_BUILD)
s.require_path = 'lib'
s.autorequire = 'action_controller'

View File

@@ -1,8 +1,8 @@
module ActionPack #:nodoc:
module VERSION #:nodoc:
MAJOR = 2
MINOR = 2
TINY = 1
MINOR = 3
TINY = 0
STRING = [MAJOR, MINOR, TINY].join('.')
end