Skip to content

Commit

Permalink
Prepare for the 3.0.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
NZKoz committed Oct 14, 2010
1 parent 2d96bcc commit bac6ba9
Show file tree
Hide file tree
Showing 16 changed files with 39 additions and 11 deletions.
2 changes: 1 addition & 1 deletion RAILS_VERSION
@@ -1 +1 @@
3.0.0
3.0.1
4 changes: 4 additions & 0 deletions actionmailer/CHANGELOG
@@ -1,3 +1,7 @@
*Rails 3.0.1 (October 15, 2010)*

* No Changes, just a version bump.

*Rails 3.0.0 (August 29, 2010)*

* subject is automatically looked up on I18n using mailer_name and action_name as scope as in t(".subject") [JK]
Expand Down
2 changes: 1 addition & 1 deletion actionmailer/lib/action_mailer/version.rb
Expand Up @@ -2,7 +2,7 @@ module ActionMailer
module VERSION #:nodoc:
MAJOR = 3
MINOR = 0
TINY = 0
TINY = 1

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down
4 changes: 4 additions & 0 deletions actionpack/CHANGELOG
@@ -1,3 +1,7 @@
*Rails 3.0.1 (October 15, 2010)*

* No Changes, just a version bump.

*Rails 3.0.0 (August 29, 2010)*

* 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]
Expand Down
2 changes: 1 addition & 1 deletion actionpack/lib/action_pack/version.rb
Expand Up @@ -2,7 +2,7 @@ module ActionPack
module VERSION #:nodoc:
MAJOR = 3
MINOR = 0
TINY = 0
TINY = 1

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down
4 changes: 4 additions & 0 deletions activemodel/CHANGELOG
@@ -1,3 +1,7 @@
*Rails 3.0.1 (October 15, 2010)*

* No Changes, just a version bump.

*Rails 3.0.0 (August 29, 2010)*

* Added ActiveModel::MassAssignmentSecurity [Eric Chapweske, Josh Kalderimis]
Expand Down
2 changes: 1 addition & 1 deletion activemodel/lib/active_model/version.rb
Expand Up @@ -2,7 +2,7 @@ module ActiveModel
module VERSION #:nodoc:
MAJOR = 3
MINOR = 0
TINY = 0
TINY = 1

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down
4 changes: 4 additions & 0 deletions activerecord/CHANGELOG
@@ -1,3 +1,7 @@
*Rails 3.0.1 (October 15, 2010)*

* Introduce a fix for CVE-2010-3993

*Rails 3.0.0 (August 29, 2010)*

* Changed update_attribute to not run callbacks and update the record directly in the database [Neeraj Singh]
Expand Down
2 changes: 1 addition & 1 deletion activerecord/lib/active_record/version.rb
Expand Up @@ -2,7 +2,7 @@ module ActiveRecord
module VERSION #:nodoc:
MAJOR = 3
MINOR = 0
TINY = 0
TINY = 1

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down
4 changes: 4 additions & 0 deletions activeresource/CHANGELOG
@@ -1,3 +1,7 @@
*Rails 3.0.1 (October 15, 2010)*

* No Changes, just a version bump.

*Rails 3.0.0 (August 29, 2010)*

* 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]
Expand Down
2 changes: 1 addition & 1 deletion activeresource/lib/active_resource/version.rb
Expand Up @@ -2,7 +2,7 @@ module ActiveResource
module VERSION #:nodoc:
MAJOR = 3
MINOR = 0
TINY = 0
TINY = 1

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down
4 changes: 4 additions & 0 deletions activesupport/CHANGELOG
@@ -1,3 +1,7 @@
*Rails 3.0.1 (October 15, 2010)*

* No Changes, just a version bump.

*Rails 3.0.0 (August 29, 2010)*

* Implemented String#strip_heredoc. [fxn]
Expand Down
2 changes: 1 addition & 1 deletion activesupport/lib/active_support/version.rb
Expand Up @@ -2,7 +2,7 @@ module ActiveSupport
module VERSION #:nodoc:
MAJOR = 3
MINOR = 0
TINY = 0
TINY = 1

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down
4 changes: 4 additions & 0 deletions railties/CHANGELOG
@@ -1,3 +1,7 @@
*Rails 3.0.1 (October 15, 2010)*

* No Changes, just a version bump.

*Rails 3.0.0 (August 29, 2010)*

* Application generation: --skip-testunit and --skip-activerecord become --skip-test-unit
Expand Down
2 changes: 1 addition & 1 deletion railties/lib/rails/version.rb
Expand Up @@ -2,7 +2,7 @@ module Rails
module VERSION #:nodoc:
MAJOR = 3
MINOR = 0
TINY = 0
TINY = 1

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down
6 changes: 3 additions & 3 deletions version.rb
Expand Up @@ -2,9 +2,9 @@ module Rails
module VERSION #:nodoc:
MAJOR = 3
MINOR = 0
TINY = 0
BUILD = "rc2"
TINY = 1
BUILD = nil

STRING = [MAJOR, MINOR, TINY, BUILD].join('.')
STRING = [MAJOR, MINOR, TINY, BUILD].compact.join('.')
end
end

0 comments on commit bac6ba9

Please sign in to comment.