Preparing for 4.1.0.beta2 release

This commit is contained in:
Rafael Mendonça França 2014-02-18 15:45:20 -03:00
parent 6256b1de9a
commit 8b20c72dd8
11 changed files with 17 additions and 9 deletions

View File

@ -1 +1 @@
4.1.0.beta1
4.1.0.beta2

View File

@ -1,7 +1,7 @@
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:

View File

@ -1,7 +1,7 @@
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:

View File

@ -1,3 +1,7 @@
* 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.

View File

@ -1,7 +1,7 @@
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:

View File

@ -1,7 +1,7 @@
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:

View File

@ -1,3 +1,7 @@
* 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.

View File

@ -1,7 +1,7 @@
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:

View File

@ -1,7 +1,7 @@
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:

View File

@ -3,7 +3,7 @@ module Rails
MAJOR = 4
MINOR = 1
TINY = 0
PRE = "beta1"
PRE = "beta2"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end

View File

@ -3,7 +3,7 @@ module Rails
MAJOR = 4
MINOR = 1
TINY = 0
PRE = "beta1"
PRE = "beta2"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end