From bd7158cb9f98ea581095b4149dc99f76fd9e696b Mon Sep 17 00:00:00 2001 From: Alessandro Rodi Date: Sun, 5 Mar 2023 15:33:42 +0100 Subject: [PATCH] Bump version and update CHANGELOG --- CHANGELOG.md | 4 +++- lib/cancan/version.rb | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5dece0e0..265e7f54 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,9 @@ -## Unreleased +## 3.5.0 * [#653](https://github.com/CanCanCommunity/cancancan/pull/653): Add support for using an nil relation as a condition. ([@ghiculescu][]) * [#702](https://github.com/CanCanCommunity/cancancan/pull/702): Support scopes of STI classes as ability conditions. ([@honigc][]) * [#798](https://github.com/CanCanCommunity/cancancan/pull/798): Allow disabling of rules compressor via `CanCan.rules_compressor_enabled = false`. ([@coorasse][]) +* [#814](https://github.com/CanCanCommunity/cancancan/pull/814): Fix issue with polymorphic associations. ([@WriterZephos][]) ## 3.4.0 @@ -705,3 +706,4 @@ Please read the [guide on migrating from CanCanCan 2.x to 3.0](https://github.co [@mtoneil]: https://github.com/mtoneil [@Juleffel]: https://github.com/Juleffel [@honigc]: https://github.com/honigc +[@WriterZephos]: https://github.com/WriterZephos diff --git a/lib/cancan/version.rb b/lib/cancan/version.rb index d5cf6e1f..7477402a 100644 --- a/lib/cancan/version.rb +++ b/lib/cancan/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module CanCan - VERSION = '3.4.0'.freeze + VERSION = '3.5.0'.freeze end