From 3356634d80d372c458030460978c3b63c006e042 Mon Sep 17 00:00:00 2001 From: "M.Shibuya" Date: Sun, 16 Feb 2020 18:07:08 +0900 Subject: [PATCH] Version 2.1.0 --- CHANGELOG.md | 11 +++++++++-- lib/carrierwave/version.rb | 2 +- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c3d407090..3389a7dc2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,13 +5,20 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] -## 2.0.2 - 2019-09-28 +## 2.1.0 - 2020-02-16 +### Added +* Support authenticated_url for Blackblaze provider(@kevivmatrix [#2444](https://github.com/carrierwaveuploader/carrierwave/pull/2444)) + +### Fixed +* Fix Ruby 2.7 deprecations(@mshibuya [9a37fc9e](https://github.com/carrierwaveuploader/carrierwave/commit/9a37fc9e7ce2937c66d5419ce1943ed114385beb)) +* Fix S3 path-style URL for host with dots for buckets that are placed in other regions than us-east-1(@Bonias [#2439](https://github.com/carrierwaveuploader/carrierwave/pull/2439)) +* Make MiniMagick::Image constant absolute to prevent misleading 'uninitialized constant' error(@p8 [#2437](https://github.com/carrierwaveuploader/carrierwave/pull/2437)) +## 2.0.2 - 2019-09-28 ### Fixed * Fix download causing nil error if the file has empty filename(@fukayatsu [#2419](https://github.com/carrierwaveuploader/carrierwave/pull/2419), [#2411](https://github.com/carrierwaveuploader/carrierwave/issues/2411)) ## 2.0.1 - 2019-08-31 - ### Fixed * Fix `#{column}_cache` unintentionally removing files on assigning empty string(@mshibuya [22e8005e](https://github.com/carrierwaveuploader/carrierwave/commit/22e8005e44751fbce9f088497853aa60b6c89fcc), [#2412](https://github.com/carrierwaveuploader/carrierwave/issues/2412)) diff --git a/lib/carrierwave/version.rb b/lib/carrierwave/version.rb index efbf68f74..120120974 100644 --- a/lib/carrierwave/version.rb +++ b/lib/carrierwave/version.rb @@ -1,3 +1,3 @@ module CarrierWave - VERSION = "2.0.2" + VERSION = "2.1.0" end