diff --git a/CHANGELOG.md b/CHANGELOG.md index 189f0ee0..3586015a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## 0.12.0 - 2024-04-24 + +### Features + +- Support the use of primary keys other than `id` when diffing ActiveRecord + models. ([#237](https://github.com/mcmire/super_diff/pull/237)) + +### Contributors + +This release features the following contributors: + +- [@benk-gc](https://github.com/benk-gc) + +Thank you! + ## 0.11.0 - 2024-02-10 ### BREAKING CHANGES diff --git a/lib/super_diff/version.rb b/lib/super_diff/version.rb index 8f77097b..9459c337 100644 --- a/lib/super_diff/version.rb +++ b/lib/super_diff/version.rb @@ -1,3 +1,3 @@ module SuperDiff - VERSION = "0.11.0".freeze + VERSION = "0.12.0".freeze end