diff --git a/CHANGELOG.md b/CHANGELOG.md index 282c580..d64e67b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [3.2.1] - 2026-05-02 + +### Changed +- Clarify Shop list card tag labels as "completed item tags" / "all item tags" + ## [3.2.0] - 2026-05-02 ### Removed diff --git a/NativeAppTemplate.xcodeproj/project.pbxproj b/NativeAppTemplate.xcodeproj/project.pbxproj index 4c3ce40..e4c44c6 100644 --- a/NativeAppTemplate.xcodeproj/project.pbxproj +++ b/NativeAppTemplate.xcodeproj/project.pbxproj @@ -1205,7 +1205,7 @@ CODE_SIGN_ENTITLEMENTS = ""; CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 10; + CURRENT_PROJECT_VERSION = 11; DEVELOPMENT_ASSET_PATHS = "\"NativeAppTemplate/Preview Content\""; ENABLE_PREVIEWS = YES; ENABLE_USER_SCRIPT_SANDBOXING = NO; @@ -1217,7 +1217,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - MARKETING_VERSION = 3.2.0; + MARKETING_VERSION = 3.2.1; PRODUCT_BUNDLE_IDENTIFIER = "com.nativeapptemplate.NativeAppTemplateFree.ios${SAMPLE_CODE_DISAMBIGUATOR}"; "PRODUCT_BUNDLE_IDENTIFIER[sdk=iphoneos*]" = "com.nativeapptemplate.NativeAppTemplateFree.ios${SAMPLE_CODE_DISAMBIGUATOR}"; PRODUCT_NAME = NativeAppTemplate; @@ -1241,7 +1241,7 @@ CODE_SIGN_ENTITLEMENTS = ""; CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 10; + CURRENT_PROJECT_VERSION = 11; DEVELOPMENT_ASSET_PATHS = "\"NativeAppTemplate/Preview Content\""; ENABLE_PREVIEWS = YES; ENABLE_USER_SCRIPT_SANDBOXING = NO; @@ -1253,7 +1253,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - MARKETING_VERSION = 3.2.0; + MARKETING_VERSION = 3.2.1; PRODUCT_BUNDLE_IDENTIFIER = "com.nativeapptemplate.NativeAppTemplateFree.ios${SAMPLE_CODE_DISAMBIGUATOR}"; "PRODUCT_BUNDLE_IDENTIFIER[sdk=iphoneos*]" = "com.nativeapptemplate.NativeAppTemplateFree.ios${SAMPLE_CODE_DISAMBIGUATOR}"; PRODUCT_NAME = NativeAppTemplate; diff --git a/NativeAppTemplate/UI/Shop List/ShopListCardView.swift b/NativeAppTemplate/UI/Shop List/ShopListCardView.swift index 74ee1a9..776ff6b 100644 --- a/NativeAppTemplate/UI/Shop List/ShopListCardView.swift +++ b/NativeAppTemplate/UI/Shop List/ShopListCardView.swift @@ -27,7 +27,7 @@ struct ShopListCardView: View { .foregroundStyle(.secondaryText) Text(String(shop.completedItemTagsCount)) .font(.uiLabelBold) - Text(verbatim: "completed tags") + Text(verbatim: "completed item tags") .font(.uiFootnote) .foregroundStyle(.contentText) } @@ -38,7 +38,7 @@ struct ShopListCardView: View { .foregroundStyle(.secondaryText) Text(String(shop.itemTagsCount)) .font(.uiLabelBold) - Text(verbatim: "all tags") + Text(verbatim: "all item tags") .font(.uiFootnote) .foregroundStyle(.contentText) }