diff --git a/CHANGELOG.md b/CHANGELOG.md index 191d5645..9f691771 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,20 @@ +## Changes in 1.5.0 + +### New Features + +* Add Rails 7.1 support. Thanks to @gucki via \##807. +* Add support for alias attributes. Thanks to @leonidkroka via \##799. + +### Fixes + +* Support for multi-byte column names when splitting queries. Thanks to @TakuyaKurimoto via \##801. +* Fix issue with track_validation_failures when import models. Thanks to @OtaYohihiro via \##798. + ## Changes in 1.4.1 ### Fixes -* Fix importing models that have required belongs_to associations and use composite primary keys. Thanks to @thoughtbot-summer vi \##783. +* Fix importing models that have required belongs_to associations and use composite primary keys. Thanks to @thoughtbot-summer via \##783. ## Changes in 1.4.0 diff --git a/lib/activerecord-import/version.rb b/lib/activerecord-import/version.rb index e9455d78..4542de2d 100644 --- a/lib/activerecord-import/version.rb +++ b/lib/activerecord-import/version.rb @@ -2,6 +2,6 @@ module ActiveRecord module Import - VERSION = "1.4.1" + VERSION = "1.5.0" end end