From b260be89d03bd26bc265f54105bcf1d94f3178d4 Mon Sep 17 00:00:00 2001 From: Ortwin Gentz Date: Wed, 29 Nov 2023 10:26:08 +0100 Subject: [PATCH] 3.5 Version bump minor updates to README and RELEASE_NOTES --- InAppSettingsKit.podspec | 2 +- .../IASKSampleApp.xcodeproj/project.pbxproj | 4 ++-- README.md | 2 +- RELEASE_NOTES.md | 10 ++++++++++ 4 files changed, 14 insertions(+), 4 deletions(-) diff --git a/InAppSettingsKit.podspec b/InAppSettingsKit.podspec index 7fa511ea..780e1f62 100644 --- a/InAppSettingsKit.podspec +++ b/InAppSettingsKit.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'InAppSettingsKit' - s.version = '3.4.2' + s.version = '3.5' s.summary = 'This iPhone framework allows settings to be in-app in addition to being in the Settings app.' s.description = <<-DESC diff --git a/InAppSettingsKitSampleApp/IASKSampleApp.xcodeproj/project.pbxproj b/InAppSettingsKitSampleApp/IASKSampleApp.xcodeproj/project.pbxproj index c280e4f5..4ccf137f 100755 --- a/InAppSettingsKitSampleApp/IASKSampleApp.xcodeproj/project.pbxproj +++ b/InAppSettingsKitSampleApp/IASKSampleApp.xcodeproj/project.pbxproj @@ -561,7 +561,7 @@ GCC_WARN_ABOUT_RETURN_TYPE = YES; GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = ""; PRODUCT_NAME = "In App Settings Kit"; @@ -593,7 +593,7 @@ GCC_WARN_ABOUT_RETURN_TYPE = YES; GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; PRODUCT_NAME = "In App Settings Kit"; SDKROOT = iphoneos; SWIFT_TREAT_WARNINGS_AS_ERRORS = NO; diff --git a/README.md b/README.md index 0bb4b772..94196944 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ [![Sponsor](https://img.shields.io/badge/Sponsor-ff40a0)](https://github.com/sponsors/futuretap) [![Mastodon](https://img.shields.io/mastodon/follow/000010558?domain=https%3A%2F%2Fmastodon.cloud)](https://mastodon.cloud/@ortwingentz) -InAppSettingsKit (IASK) is an open source framework to easily add in-app settings to your iOS or Catalyst apps. Normally iOS apps use the `Settings.bundle` resource to add app-specific settings in the Settings app. InAppSettingsKit takes advantage of the same bundle and allows you to present the same settings screen within your app. So the user has the choice where to change the settings. +InAppSettingsKit (IASK) is an open source framework to easily add in-app settings to your iOS, Catalyst, or visionOS apps. Normally iOS apps use the `Settings.bundle` resource to add app-specific settings in the Settings app. InAppSettingsKit takes advantage of the same bundle and allows you to present the same settings screen within your app. So the user has the choice where to change the settings. IASK not only replicates the feature set of system settings but supports a large number of additional elements and configuration options. diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 1de9b41c..79a0153b 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,5 +1,15 @@ # Release Notes +## InAppSettingsKit 3.5 + +- added `bundle` property allowing `InAppSettings.bundle` to be part of the swift package instead of the main app + +## InAppSettingsKit 3.4 + +- visionOS support +- raised deployment target to iOS 10.0 +- Added IASKUITextAlignmentNatural text alignment + ## InAppSettingsKit 3.3.4 - Restructure project to better support Swift Package Manager when used with Tuist (Thanks @hisaac 🙏)