Skip to content

Commit

Permalink
Prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
dhh committed Jun 25, 2013
1 parent 4da9228 commit 375d9a0
Show file tree
Hide file tree
Showing 15 changed files with 16 additions and 63 deletions.
2 changes: 1 addition & 1 deletion RAILS_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.0.rc2
4.0.0
12 changes: 1 addition & 11 deletions actionmailer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,4 @@
## Rails 4.0.0.rc2 (June 11, 2013) ##

* No changes.


## Rails 4.0.0.rc1 (April 29, 2013) ##

* No changes.


## Rails 4.0.0.beta1 (February 25, 2013) ##
## Rails 4.0.0 (June 25, 2013) ##

* Allow passing interpolations to `#default_i18n_subject`, e.g.:

Expand Down
2 changes: 1 addition & 1 deletion actionmailer/lib/action_mailer/version.rb
Original file line number Diff line number Diff line change
@@ -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.0.0.rc2"
Gem::Version.new "4.0.0"
end

module VERSION #:nodoc:
Expand Down
11 changes: 1 addition & 10 deletions actionpack/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## unreleased ##
## Rails 4.0.0 (June 25, 2013) ##

* Merge `:action` from routing scope and assign endpoint if both `:controller`
and `:action` are present. The endpoint assignment only occurs if there is
Expand Down Expand Up @@ -30,16 +30,10 @@

*David Celis*


## Rails 4.0.0.rc2 (June 11, 2013) ##

* Fix an issue where partials with a number in the filename weren't being digested for cache dependencies.

*Bryan Ricker*


## Rails 4.0.0.rc1 (April 29, 2013) ##

* Add support for passing custom url options other than `:host` and custom
status and flash options to `force_ssl`.

Expand Down Expand Up @@ -221,9 +215,6 @@

*Thierry Zires*


## Rails 4.0.0.beta1 (February 25, 2013) ##

* Fix `respond_to` not using formats that have no block if all is present. *Michael Grosser*

* New applications use an encrypted session store by default.
Expand Down
2 changes: 1 addition & 1 deletion actionpack/lib/action_pack/version.rb
Original file line number Diff line number Diff line change
@@ -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.0.0.rc2"
Gem::Version.new "4.0.0"
end

module VERSION #:nodoc:
Expand Down
6 changes: 1 addition & 5 deletions activemodel/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
## Rails 4.0.0.rc2 (June 11, 2013) ##
## Rails 4.0.0 (June 25, 2013) ##

* Fix regression in has_secure_password. When a password is set, but a
confirmation is an empty string, it would incorrectly save.

*Steve Klabnik* and *Phillip Calvin*

## Rails 4.0.0.rc1 (April 29, 2013) ##

* Add `ActiveModel::Errors#full_messages_for`, to return all the error messages
for a given attribute.

Expand Down Expand Up @@ -75,8 +73,6 @@

*Yves Senn*

## Rails 4.0.0.beta1 (February 25, 2013) ##

* Add `ActiveModel::Validations::AbsenceValidator`, a validator to check the
absence of attributes.

Expand Down
2 changes: 1 addition & 1 deletion activemodel/lib/active_model/version.rb
Original file line number Diff line number Diff line change
@@ -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.0.0.rc2"
Gem::Version.new "4.0.0"
end

module VERSION #:nodoc:
Expand Down
8 changes: 1 addition & 7 deletions activerecord/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Rails 4.0.0.rc2 (June 11, 2013) ##
## Rails 4.0.0 (June 25, 2013) ##

* Fix `add_column` with `array` option when using PostgreSQL. Fixes #10432

Expand Down Expand Up @@ -50,9 +50,6 @@

*Godfrey Chan*


## Rails 4.0.0.rc1 (April 29, 2013) ##

* Trigger a save on `has_one association=(associate)` when the associate contents have changed.

Fix #8856.
Expand Down Expand Up @@ -593,9 +590,6 @@
# This will expand the order :name to "authors".name.
Author.joins(:books).where('books.published = 1').order(:name)


## Rails 4.0.0.beta1 (February 25, 2013) ##

* Fix overriding of attributes by `default_scope` on `ActiveRecord::Base#dup`.

*Hiroshige UMINO*
Expand Down
2 changes: 1 addition & 1 deletion activerecord/lib/active_record/version.rb
Original file line number Diff line number Diff line change
@@ -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.0.0.rc2"
Gem::Version.new "4.0.0"
end

module VERSION #:nodoc:
Expand Down
8 changes: 2 additions & 6 deletions activesupport/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## Rails 4.0.0 (June 25, 2013) ##

* Override `Time.at` to support the passing of Time-like values when called with a single argument.

*Andrew White*
Expand All @@ -10,9 +12,6 @@

*Brian Morearty + Carlos Antonio da Silva*


## Rails 4.0.0.rc1 (April 29, 2013) ##

* An `ActiveSupport::Subscriber` class has been extracted from
`ActiveSupport::LogSubscriber`, allowing you to use the event attachment
API for other kinds of subscribers.
Expand Down Expand Up @@ -41,9 +40,6 @@

*Charles Jones*


## Rails 4.0.0.beta1 (February 25, 2013) ##

* Improve singularizing a singular for multiple cases.
Fixes #2608 #1825 #2395.

Expand Down
2 changes: 1 addition & 1 deletion activesupport/lib/active_support/version.rb
Original file line number Diff line number Diff line change
@@ -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.0.0.rc2"
Gem::Version.new "4.0.0"
end

module VERSION #:nodoc:
Expand Down
10 changes: 1 addition & 9 deletions guides/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,7 @@
## Rails 4.0.0.rc2 (June 11, 2013) ##

* No changes.


## Rails 4.0.0.rc1 (April 29, 2013) ##
## Rails 4.0.0 (June 25, 2013) ##

* Change Service pages(404, etc). *Stanislav Sobolev*


## Rails 4.0.0.beta1 (February 25, 2013) ##

* Split Validations and Callbacks guide into two. *Steve Klabnik*

* New guide _Working with JavaScript in Rails_. *Steve Klabnik*
Expand Down
8 changes: 1 addition & 7 deletions railties/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
## Rails 4.0.0.rc2 (June 11, 2013) ##
## Rails 4.0.0 (June 25, 2013) ##

* Clearing autoloaded constants triggers routes reloading [Fixes #10685].

*Xavier Noria*


## Rails 4.0.0.rc1 (April 29, 2013) ##

* Move rails.png into a data-uri. One less file to get generated into a new
application. This is also consistent with the removal of index.html.

Expand Down Expand Up @@ -67,9 +64,6 @@

*Stanislav Sobolev*


## Rails 4.0.0.beta1 (February 25, 2013) ##

* Improve `rake stats` for JavaScript and CoffeeScript: ignore block comments
and calculates number of functions.

Expand Down
2 changes: 1 addition & 1 deletion railties/lib/rails/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module VERSION
MAJOR = 4
MINOR = 0
TINY = 0
PRE = "rc2"
PRE = nil

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
2 changes: 1 addition & 1 deletion version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module VERSION
MAJOR = 4
MINOR = 0
TINY = 0
PRE = "rc2"
PRE = nil

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

7 comments on commit 375d9a0

@vipulnsward
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

❀️

@mdespuits
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸ‘ ❀️ 😍

@christhekeele
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸ†’

@jvkumar
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Awesome!! πŸ‘

@vendethiel
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(y)

@hmaurer
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

😻

@gregmolnar
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

All of my tests are passing. Great job again guys!

Please sign in to comment.