From 8e0abf5703084b2dc44f9934c714b8361a4616d4 Mon Sep 17 00:00:00 2001 From: John Hawthorn Date: Fri, 3 Nov 2017 13:45:01 -0700 Subject: [PATCH] Version 2.4.0 --- CHANGELOG.md | 14 ++++++++++++++ lib/paranoia/version.rb | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) 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