Changelog: Add missing bang in `#really_destroy!`

parent dce2881f
...@@ -52,7 +52,7 @@ ...@@ -52,7 +52,7 @@
* `#destroyed?` is no longer overridden. Use `#paranoia_destroyed?` for the existing behaviour. [Washington Luiz](https://github.com/huoxito) * `#destroyed?` is no longer overridden. Use `#paranoia_destroyed?` for the existing behaviour. [Washington Luiz](https://github.com/huoxito)
* `#persisted?` is no longer overridden. * `#persisted?` is no longer overridden.
* ActiveRecord 4.0 no longer has `#destroy!` as an alias for `#really_destroy`. * ActiveRecord 4.0 no longer has `#destroy!` as an alias for `#really_destroy!`.
* `#destroy` will now raise an exception if called on a readonly record. * `#destroy` will now raise an exception if called on a readonly record.
* `#destroy` on a hard deleted record is now a successful noop. * `#destroy` on a hard deleted record is now a successful noop.
* `#destroy` on a new record will set deleted_at (previously this raised an error) * `#destroy` on a new record will set deleted_at (previously this raised an error)
...@@ -60,7 +60,7 @@ ...@@ -60,7 +60,7 @@
### Bug Fixes ### Bug Fixes
* Calling `#destroy` twice will not hard-delete records. Use `#really_destroy` if this is desired. * Calling `#destroy` twice will not hard-delete records. Use `#really_destroy!` if this is desired.
* Fix errors on non-paranoid has_one dependent associations * Fix errors on non-paranoid has_one dependent associations
## 2.0.5 (2015-01-22) ## 2.0.5 (2015-01-22)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment