Preparing for 4.1.0.beta2 release

上级 6256b1de
module ActionMailer
# Returns the version of the currently loaded ActionMailer as a Gem::Version
def self.version
Gem::Version.new "4.1.0.beta1"
Gem::Version.new "4.1.0.beta2"
end
module VERSION #:nodoc:
......
module ActionPack
# Returns the version of the currently loaded ActionPack as a Gem::Version
def self.version
Gem::Version.new "4.1.0.beta1"
Gem::Version.new "4.1.0.beta2"
end
module VERSION #:nodoc:
......
* Escape format, negative_format and units options of number helpers
Fixes: CVE-2014-0081
* A Cycle object should accept an array and cycle through it as it would with a set of
comma-separated objects.
......
module ActionView
# Returns the version of the currently loaded ActionView as a Gem::Version
def self.version
Gem::Version.new "4.1.0.beta1"
Gem::Version.new "4.1.0.beta2"
end
module VERSION #:nodoc:
......
module ActiveModel
# Returns the version of the currently loaded ActiveModel as a Gem::Version
def self.version
Gem::Version.new "4.1.0.beta1"
Gem::Version.new "4.1.0.beta2"
end
module VERSION #:nodoc:
......
* Correctly escape PostgreSQL arrays.
Fixes: CVE-2014-0080
* `Relation` no longer has mutator methods like `#map!` and `#delete_if`. Convert
to an `Array` by calling `#to_a` before using these methods.
......
module ActiveRecord
# Returns the version of the currently loaded ActiveRecord as a Gem::Version
def self.version
Gem::Version.new "4.1.0.beta1"
Gem::Version.new "4.1.0.beta2"
end
module VERSION #:nodoc:
......
module ActiveSupport
# Returns the version of the currently loaded ActiveSupport as a Gem::Version
def self.version
Gem::Version.new "4.1.0.beta1"
Gem::Version.new "4.1.0.beta2"
end
module VERSION #:nodoc:
......
......@@ -3,7 +3,7 @@ module VERSION
MAJOR = 4
MINOR = 1
TINY = 0
PRE = "beta1"
PRE = "beta2"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
......@@ -3,7 +3,7 @@ module VERSION
MAJOR = 4
MINOR = 1
TINY = 0
PRE = "beta1"
PRE = "beta2"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册