Skip to content

Commit bac6ba9

Browse files
committed
Prepare for the 3.0.1 release
1 parent 2d96bcc commit bac6ba9

File tree

16 files changed

+39
-11
lines changed

16 files changed

+39
-11
lines changed

RAILS_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.0.0
1+
3.0.1

actionmailer/CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
*Rails 3.0.1 (October 15, 2010)*
2+
3+
* No Changes, just a version bump.
4+
15
*Rails 3.0.0 (August 29, 2010)*
26

37
* subject is automatically looked up on I18n using mailer_name and action_name as scope as in t(".subject") [JK]

actionmailer/lib/action_mailer/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module ActionMailer
22
module VERSION #:nodoc:
33
MAJOR = 3
44
MINOR = 0
5-
TINY = 0
5+
TINY = 1
66

77
STRING = [MAJOR, MINOR, TINY].join('.')
88
end

actionpack/CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
*Rails 3.0.1 (October 15, 2010)*
2+
3+
* No Changes, just a version bump.
4+
15
*Rails 3.0.0 (August 29, 2010)*
26

37
* Symbols and strings in routes should yield the same behavior. Note this may break existing apps that were using symbols with the new routes API [José Valim]

actionpack/lib/action_pack/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module ActionPack
22
module VERSION #:nodoc:
33
MAJOR = 3
44
MINOR = 0
5-
TINY = 0
5+
TINY = 1
66

77
STRING = [MAJOR, MINOR, TINY].join('.')
88
end

activemodel/CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
*Rails 3.0.1 (October 15, 2010)*
2+
3+
* No Changes, just a version bump.
4+
15
*Rails 3.0.0 (August 29, 2010)*
26

37
* Added ActiveModel::MassAssignmentSecurity [Eric Chapweske, Josh Kalderimis]

activemodel/lib/active_model/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module ActiveModel
22
module VERSION #:nodoc:
33
MAJOR = 3
44
MINOR = 0
5-
TINY = 0
5+
TINY = 1
66

77
STRING = [MAJOR, MINOR, TINY].join('.')
88
end

activerecord/CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
*Rails 3.0.1 (October 15, 2010)*
2+
3+
* Introduce a fix for CVE-2010-3993
4+
15
*Rails 3.0.0 (August 29, 2010)*
26

37
* Changed update_attribute to not run callbacks and update the record directly in the database [Neeraj Singh]

activerecord/lib/active_record/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module ActiveRecord
22
module VERSION #:nodoc:
33
MAJOR = 3
44
MINOR = 0
5-
TINY = 0
5+
TINY = 1
66

77
STRING = [MAJOR, MINOR, TINY].join('.')
88
end

activeresource/CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
*Rails 3.0.1 (October 15, 2010)*
2+
3+
* No Changes, just a version bump.
4+
15
*Rails 3.0.0 (August 29, 2010)*
26

37
* JSON: set Base.include_root_in_json = true to include a root value in the JSON: {"post": {"title": ...}}. Mirrors the Active Record option. [Santiago Pastorino]

0 commit comments

Comments
 (0)