diff --git a/CHANGELOG.md b/CHANGELOG.md index 24981e31..48e69e3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## Changes in 1.0.5 + +### Fixes + +* Allow serialized attributes to be returned from import. Thanks to @timanovsky, @jkowens via \#660. +* Return ActiveRecord::Connection from + ActiveREcord::Base#establish_connection. Thanks to @reverentF via +\#663. +* Support PostgreSQL array. Thanks to @ujihisa via \#669. +* Skip loading association ids when column changed. Thanks to @Aristat + via \#673. + ## Changes in 1.0.4 ### Fixes diff --git a/lib/activerecord-import/version.rb b/lib/activerecord-import/version.rb index e7e2268b..96b6b27a 100644 --- a/lib/activerecord-import/version.rb +++ b/lib/activerecord-import/version.rb @@ -1,5 +1,5 @@ module ActiveRecord module Import - VERSION = "1.0.4".freeze + VERSION = "1.0.5".freeze end end