diff --git a/CHANGELOG.md b/CHANGELOG.md index 5be46fda..9806c6ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,6 @@ ### Added -- Added `isSelectable` to `ApplyItemContentInfo`, reflecting whether the item's `selectionStyle` is interactive (`.tappable`, `.selectable`, or `.toggles`). `ItemContent` implementations can read this to represent themselves as interactive, for example by applying the `.button` accessibility trait so VoiceOver users know the item responds to taps. - ### Removed ### Changed @@ -16,6 +14,12 @@ # Past Releases +# 17.3.0 - 2026-06-16 + +### Added + +- Added `isSelectable` to `ApplyItemContentInfo`, reflecting whether the item's `selectionStyle` is interactive (`.tappable`, `.selectable`, or `.toggles`). `ItemContent` implementations can read this to represent themselves as interactive, for example by applying the `.button` accessibility trait so VoiceOver users know the item responds to taps. + # 17.2.0 - 2026-06-01 ### Added diff --git a/version.rb b/version.rb index 4b43684a..1efe5606 100644 --- a/version.rb +++ b/version.rb @@ -2,7 +2,7 @@ BLUEPRINT_VERSION ||= ['~> 5.0'].freeze -LISTABLE_VERSION ||= '17.2.0' +LISTABLE_VERSION ||= '17.3.0' LISTABLE_IOS_DEPLOYMENT_TARGET ||= '15.0'