diff --git a/CHANGELOG.md b/CHANGELOG.md index dcde3f7..4e4a5d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,10 +8,13 @@ ### Changed ### Fixed -- Stopped an issue of primary_key detection failing due to invalid attribute types being passed in (`.to_sym` occurs earlier) ### Security +## [1.0.1] - 2026-05-05 +### Fixed +- Stopped an issue of primary_key detection failing due to invalid attribute types being passed in (`.to_sym` occurs earlier) + ## [1.0] - 2026-04-28 ### Breaking Changes - Set a default primary key of `:id` to all models @@ -116,7 +119,8 @@ add all helpers to all attributes on a model ### Added - Initial gem creation -[Unreleased]: https://github.com/site-prism/testingrecord/compare/v1.0...HEAD +[Unreleased]: https://github.com/site-prism/testingrecord/compare/v1.0.1...HEAD +[1.0.1]: https://github.com/site-prism/testingrecord/compare/v1.0...v1.0.1 [1.0]: https://github.com/site-prism/testingrecord/compare/v0.8...v1.0 [0.8]: https://github.com/site-prism/testingrecord/compare/v0.7...v0.8 [0.7]: https://github.com/site-prism/testingrecord/compare/v0.6...v0.7 diff --git a/lib/testing_record/version.rb b/lib/testing_record/version.rb index 2f1bdab..90bcd12 100644 --- a/lib/testing_record/version.rb +++ b/lib/testing_record/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module TestingRecord - VERSION = '1.0' + VERSION = '1.0.1' end