Skip to content

Commit

Permalink
Move changelog entry in railties to the top
Browse files Browse the repository at this point in the history
Other minor changelog improvements [ci skip]
  • Loading branch information
carlosantoniodasilva committed Jan 5, 2013
1 parent ee1a03c commit 149b86d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 13 deletions.
4 changes: 2 additions & 2 deletions activerecord/CHANGELOG.md
@@ -1,6 +1,6 @@
## Rails 4.0.0 (unreleased) ##

* Support for PostgreSQL's ltree data type.
* Support for PostgreSQL's `ltree` data type.

*Rob Worley*

Expand All @@ -13,7 +13,7 @@
This is a soft-deprecation for `update_attributes`, although it will still work without any
deprecation message in 4.0 is recommended to start using `update` since `update_attributes` will be
deprecated and removed in future versions of Rails.

*Amparo Luna + Guillermo Iguaran*

* `after_commit` and `after_rollback` now validate the `:on` option and raise an `ArgumentError`
Expand Down
6 changes: 3 additions & 3 deletions activesupport/CHANGELOG.md
@@ -1,15 +1,15 @@
## Rails 4.0.0 (unreleased) ##

* Change String#to_date to use Date.parse. This gives more consistant error
* Change `String#to_date` to use `Date.parse`. This gives more consistent error
messages and allows the use of partial dates.

"gibberish".to_date => Argument Error: invalid date
"3rd Feb".to_date => Sun, 03 Feb 2013

*Kelly Stannard*

* It's now possible to compare Date, DateTime, Time and TimeWithZone with Infinity
This allows to create date/time ranges with one infinite bound.
* It's now possible to compare `Date`, `DateTime`, `Time` and `TimeWithZone`
with `Infinity`. This allows to create date/time ranges with one infinite bound.
Example:

range = Range.new(Date.today, Float::INFINITY)
Expand Down
15 changes: 7 additions & 8 deletions railties/CHANGELOG.md
@@ -1,19 +1,18 @@
## Rails 4.0.0 (unreleased) ##

* Add `-B` alias for `--skip-bundle` option in the rails new generators.
* Environment name can be a start substring of the default environment names
(production, development, test). For example: tes, pro, prod, dev, devel.
Fix #8628.

*Jiri Pospisil*
*Mykola Kyryk*

* Environment name can be a start substring of the default environment names
(production, development, test).
For example: tes, pro, prod, dev, devel.
Fix #8628
* Add `-B` alias for `--skip-bundle` option in the rails new generators.

*Mykola Kyryk*
*Jiri Pospisil*

* Quote column names in generates fixture files. This prevents
conflicts with reserved YAML keywords such as 'yes' and 'no'
Fix #8612
Fix #8612.

*Yves Senn*

Expand Down

0 comments on commit 149b86d

Please sign in to comment.