From a36a092bcdb498fb4b32897733ce1f4fbb93b196 Mon Sep 17 00:00:00 2001 From: Luke Hill Date: Mon, 25 May 2026 14:01:23 +0100 Subject: [PATCH] v1.1 --- CHANGELOG.md | 14 +++++++++++--- lib/testing_record/version.rb | 2 +- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 33b04f7..96bb770 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,15 @@ ### Removed +### Added + +### Changed + +### Fixed + +### Security + +## [1.1] - 2026-05-25 ### Added - Added a new conditional piece of logic for filtering whilst using `#find_by`. This allows you to filter using "AND" logic or "OR" logic - Filters using "AND" logic will require all attributes to match the criteria specified in order for an entity to be returned @@ -22,8 +31,6 @@ filtering on email addresses ### Fixed - Hyphenated keys are not permitted for the `primary_key` setting as this will cause issues with ruby -### 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) @@ -132,7 +139,8 @@ add all helpers to all attributes on a model ### Added - Initial gem creation -[Unreleased]: https://github.com/site-prism/testingrecord/compare/v1.0.1...HEAD +[Unreleased]: https://github.com/site-prism/testingrecord/compare/v1.1...HEAD +[1.1]: https://github.com/site-prism/testingrecord/compare/v1.0.1...v1.1 [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 diff --git a/lib/testing_record/version.rb b/lib/testing_record/version.rb index 90bcd12..aa56764 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.1' + VERSION = '1.1' end