Skip to content

Commit 8b20c72

Browse files
committed
Preparing for 4.1.0.beta2 release
1 parent 6256b1d commit 8b20c72

File tree

11 files changed

+17
-9
lines changed

11 files changed

+17
-9
lines changed

RAILS_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.1.0.beta1
1+
4.1.0.beta2

actionmailer/lib/action_mailer/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module ActionMailer
22
# Returns the version of the currently loaded ActionMailer as a Gem::Version
33
def self.version
4-
Gem::Version.new "4.1.0.beta1"
4+
Gem::Version.new "4.1.0.beta2"
55
end
66

77
module VERSION #:nodoc:

actionpack/lib/action_pack/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module ActionPack
22
# Returns the version of the currently loaded ActionPack as a Gem::Version
33
def self.version
4-
Gem::Version.new "4.1.0.beta1"
4+
Gem::Version.new "4.1.0.beta2"
55
end
66

77
module VERSION #:nodoc:

actionview/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
* Escape format, negative_format and units options of number helpers
2+
3+
Fixes: CVE-2014-0081
4+
15
* A Cycle object should accept an array and cycle through it as it would with a set of
26
comma-separated objects.
37

actionview/lib/action_view/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module ActionView
22
# Returns the version of the currently loaded ActionView as a Gem::Version
33
def self.version
4-
Gem::Version.new "4.1.0.beta1"
4+
Gem::Version.new "4.1.0.beta2"
55
end
66

77
module VERSION #:nodoc:

activemodel/lib/active_model/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module ActiveModel
22
# Returns the version of the currently loaded ActiveModel as a Gem::Version
33
def self.version
4-
Gem::Version.new "4.1.0.beta1"
4+
Gem::Version.new "4.1.0.beta2"
55
end
66

77
module VERSION #:nodoc:

activerecord/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
* Correctly escape PostgreSQL arrays.
2+
3+
Fixes: CVE-2014-0080
4+
15
* `Relation` no longer has mutator methods like `#map!` and `#delete_if`. Convert
26
to an `Array` by calling `#to_a` before using these methods.
37

activerecord/lib/active_record/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module ActiveRecord
22
# Returns the version of the currently loaded ActiveRecord as a Gem::Version
33
def self.version
4-
Gem::Version.new "4.1.0.beta1"
4+
Gem::Version.new "4.1.0.beta2"
55
end
66

77
module VERSION #:nodoc:

activesupport/lib/active_support/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module ActiveSupport
22
# Returns the version of the currently loaded ActiveSupport as a Gem::Version
33
def self.version
4-
Gem::Version.new "4.1.0.beta1"
4+
Gem::Version.new "4.1.0.beta2"
55
end
66

77
module VERSION #:nodoc:

railties/lib/rails/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module VERSION
33
MAJOR = 4
44
MINOR = 1
55
TINY = 0
6-
PRE = "beta1"
6+
PRE = "beta2"
77

88
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
99
end

0 commit comments

Comments
 (0)