diff --git a/CHANGELOG.md b/CHANGELOG.md index cfd06dc62..67b4e92ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## 1.3.3 - 2023-02-02 +### Fixed +* Fix Ruby 2.7 deprecation warning on Mounter#remove? (@kaoru [#2644](https://github.com/carrierwaveuploader/carrierwave/pull/2644)) +* Limit ssrf_filter to < 1.1.0 due to the breaking changes at 1.1.0 (@marcogregorius [#2640](https://github.com/carrierwaveuploader/carrierwave/pull/2640)) + ## 1.3.2 - 2021-02-08 ### Fixed * Fix Ruby 2.7 deprecations(@aubinlrx [#2462](https://github.com/carrierwaveuploader/carrierwave/pull/2462)) diff --git a/lib/carrierwave/version.rb b/lib/carrierwave/version.rb index 1f43adab2..ead3f3319 100644 --- a/lib/carrierwave/version.rb +++ b/lib/carrierwave/version.rb @@ -1,3 +1,3 @@ module CarrierWave - VERSION = "1.3.2" + VERSION = "1.3.3" end