diff --git a/CHANGELOG.md b/CHANGELOG.md index d5425ea0..a1cd353d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # paranoia Changelog +## 2.4.0 + +* [#423](https://github.com/rubysherpas/paranoia/pull/423) Add `paranoia_destroy` and `paranoia_delete` aliases + + [John Hawthorn (@jhawthorn)](https://github.com/jhawthorn) + +* [#408](https://github.com/rubysherpas/paranoia/pull/408) Fix instance variable `@_disable_counter_cache` not initialized warning. + + [Akira Matsuda (@amatsuda)](https://github.com/amatsuda) + +* [#412](https://github.com/rubysherpas/paranoia/pull/412) Fix `really_destroy!` behavior with `sentinel_value` + + [Steve Rice (@steverice)](https://github.com/steverice) + ## 2.3.1 * [#397](https://github.com/rubysherpas/paranoia/pull/397) Bump active record max version to support 5.1 final diff --git a/lib/paranoia/version.rb b/lib/paranoia/version.rb index 6349baaa..a31bde3b 100644 --- a/lib/paranoia/version.rb +++ b/lib/paranoia/version.rb @@ -1,3 +1,3 @@ module Paranoia - VERSION = '2.3.1'.freeze + VERSION = '2.4.0'.freeze end