diff --git a/CHANGELOG.md b/CHANGELOG.md index 041ffd7..3ac343d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [2.1.0] - 2020-12-09 +### Added +support for selectively import tables with custom callbacks per table (#34) + ## [2.0.0] - 2020-11-11 ### Breaking changes This is a breaking change because LiveFixtures::Import.new now needs to receive the class_names Hash to be able to correctly compute the insert_order in case there are some unconventional class names associations. And the class_names argument is removed from import_all. But this is the only change. diff --git a/lib/live_fixtures/version.rb b/lib/live_fixtures/version.rb index b6cc5e8..78f4a6a 100644 --- a/lib/live_fixtures/version.rb +++ b/lib/live_fixtures/version.rb @@ -1,3 +1,3 @@ module LiveFixtures - VERSION = "2.0.0" + VERSION = "2.1.0" end