From ff04ddc779102550b46aa6bb86b1632e36423574 Mon Sep 17 00:00:00 2001 From: Surendra Singhi Date: Fri, 19 Jan 2024 12:00:57 +0530 Subject: [PATCH] prepare for release 7.2.2 --- NEWS | 8 +++++++- lib/paperclip/version.rb | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 9597768bf..4080a8087 100644 --- a/NEWS +++ b/NEWS @@ -1,8 +1,14 @@ [UNRELEASED] + +7.2.1 (2023-09-09) * Improvement: Support file extension names both as symbols and strings for :content_type_mappings -* Issue file delete only once per unique style when nullifying attachment or destroying an object. Avoids triggering a rate limit error on Google Cloud Storage. + +7.2.0 (2023-05-30) * Paperclip schema statements are consistent with ActiveRecord::Migration::Compatibility versioning. Old migrations containing Paperclip schema statements perform the same schema changes both before and after an ActiveRecord version upgrade. +7.0.1 (2021-10-06) +* Issue file delete only once per unique style when nullifying attachment or destroying an object. Avoids triggering a rate limit error on Google Cloud Storage. + 7.0.0 (2021-05-28) * Replace `mimemagic` gem with `marcel` due to licensing issues. See https://github.com/kreeti/kt-paperclip/pull/54 for details and limitations diff --git a/lib/paperclip/version.rb b/lib/paperclip/version.rb index 7c0aefad9..09de0eb51 100644 --- a/lib/paperclip/version.rb +++ b/lib/paperclip/version.rb @@ -1,3 +1,3 @@ module Paperclip - VERSION = "7.2.1" unless defined?(Paperclip::VERSION) + VERSION = "7.2.2" unless defined?(Paperclip::VERSION) end