aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--activerecord/CHANGELOG.md4
-rw-r--r--activesupport/CHANGELOG.md6
-rw-r--r--railties/CHANGELOG.md15
3 files changed, 12 insertions, 13 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 7600ac34ca..3a0af57f64 100644
--- a/activerecord/CHANGELOG.md
+++ b/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*
@@ -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`
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md
index 0d2897d79d..cc23ceb02c 100644
--- a/activesupport/CHANGELOG.md
+++ b/activesupport/CHANGELOG.md
@@ -1,6 +1,6 @@
## 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
@@ -8,8 +8,8 @@
*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)
diff --git a/railties/CHANGELOG.md b/railties/CHANGELOG.md
index 52ba1bd581..d894a6801a 100644
--- a/railties/CHANGELOG.md
+++ b/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*