diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a55e5a..9d65757 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.0.1] - 2024-10-15 +### Changed +- Removed the 'v' from the version string in UpdatesUI. + ## [2.0.0] - 2024-10-15 ### Added - Added PrivacyInfo.xcprivacy diff --git a/Example/Pods/Target Support Files/Updates/Updates-Info.plist b/Example/Pods/Target Support Files/Updates/Updates-Info.plist index 4b3a928..465252c 100644 --- a/Example/Pods/Target Support Files/Updates/Updates-Info.plist +++ b/Example/Pods/Target Support Files/Updates/Updates-Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 2.0.0 + 2.0.1 CFBundleSignature ???? CFBundleVersion diff --git a/Example/Updates.xcodeproj/project.pbxproj b/Example/Updates.xcodeproj/project.pbxproj index f8c1092..fdaebde 100644 --- a/Example/Updates.xcodeproj/project.pbxproj +++ b/Example/Updates.xcodeproj/project.pbxproj @@ -504,7 +504,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - MARKETING_VERSION = 2.0.0; + MARKETING_VERSION = 2.0.1; MODULE_NAME = ExampleApp; PRODUCT_BUNDLE_IDENTIFIER = com.rwbutler.updates; PRODUCT_NAME = "$(TARGET_NAME)"; @@ -525,7 +525,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - MARKETING_VERSION = 2.0.0; + MARKETING_VERSION = 2.0.1; MODULE_NAME = ExampleApp; PRODUCT_BUNDLE_IDENTIFIER = com.rwbutler.updates; PRODUCT_NAME = "$(TARGET_NAME)"; diff --git a/README.md b/README.md index 66f189c..18ff482 100644 --- a/README.md +++ b/README.md @@ -173,7 +173,7 @@ To manually notify users of updates to your app configure your JSON file as foll "app-store-id": "123456", "comparing": "major-versions", "min-os-required": "12.0.0", - "version": "2.0.0" + "version": "2.0.1" } } ``` @@ -193,7 +193,7 @@ Updates.notifying = .always Updates.appStoreId = "123456" Updates.comparingVersions = .major Updates.minimumOSVersion = "12.0.0" -Updates.versionString = "2.0.0" +Updates.versionString = "2.0.1" ``` diff --git a/Updates.podspec b/Updates.podspec index 48a4a3f..0ba2a66 100644 --- a/Updates.podspec +++ b/Updates.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'Updates' - s.version = '2.0.0' + s.version = '2.0.1' s.swift_version = '5.0' s.summary = 'Updates is a framework for automatically detecting app updates and seamlessly prompting users to update.' s.description = <<-DESC