From 76fbd75befc44e266eb59bfd2e515221f3a782f5 Mon Sep 17 00:00:00 2001 From: Justin Jia Date: Mon, 14 Nov 2016 17:11:51 -0800 Subject: [PATCH] Bump version --- CHANGELOG.md | 7 +++++++ README.md | 2 +- Resource.podspec | 4 ++-- Resource.xcodeproj/project.pbxproj | 8 ++++---- Sources/Info.plist | 2 +- Sources/LocalizedUserNotificationStringResource.swift | 3 --- 6 files changed, 15 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 668bce1..1ba88be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 0.1.1 + +### Changed + +- Bump minimum development target to iOS 10.0. + - Changed by [Justin Jia](http://github.com/JustinJiaDev). + ## 0.1 ### Added diff --git a/README.md b/README.md index ffb55f7..53712bf 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Resource helps you to manage your project resources. ## Requirements -iOS 9+ / Xcode 8+ / Swift 3+ +iOS 10+ / Xcode 8+ / Swift 3+ ## Installation diff --git a/Resource.podspec b/Resource.podspec index 8ecb7f6..5dd01d6 100644 --- a/Resource.podspec +++ b/Resource.podspec @@ -1,11 +1,11 @@ Pod::Spec.new do |s| s.name = "Resource" - s.version = "0.1" + s.version = "0.1.1" s.summary = "Resource helps you to manage your project resources." s.homepage = "https://github.com/TintPoint/Resource" s.author = { "Justin Jia" => "justin.jia@tintpoint.com" } s.license = "MIT" - s.platform = :ios, "9.0" + s.platform = :ios, "10.0" s.source = { :git => "https://github.com/TintPoint/Resource.git", :tag => "#{s.version}" } s.source_files = "Sources/*.swift" s.framework = "UIKit" diff --git a/Resource.xcodeproj/project.pbxproj b/Resource.xcodeproj/project.pbxproj index 80cab6f..9d0e57e 100644 --- a/Resource.xcodeproj/project.pbxproj +++ b/Resource.xcodeproj/project.pbxproj @@ -304,7 +304,7 @@ isa = XCBuildConfiguration; buildSettings = { INFOPLIST_FILE = Tests/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; PRODUCT_BUNDLE_IDENTIFIER = com.tintpoint.ResourceTests; PRODUCT_NAME = "$(TARGET_NAME)"; @@ -315,7 +315,7 @@ isa = XCBuildConfiguration; buildSettings = { INFOPLIST_FILE = Tests/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; PRODUCT_BUNDLE_IDENTIFIER = com.tintpoint.ResourceTests; PRODUCT_NAME = "$(TARGET_NAME)"; @@ -411,7 +411,7 @@ DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; INFOPLIST_FILE = Sources/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; PRODUCT_BUNDLE_IDENTIFIER = com.tintpoint.Resource; PRODUCT_NAME = "$(TARGET_NAME)"; @@ -427,7 +427,7 @@ DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; INFOPLIST_FILE = Sources/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; PRODUCT_BUNDLE_IDENTIFIER = com.tintpoint.Resource; PRODUCT_NAME = Resource; diff --git a/Sources/Info.plist b/Sources/Info.plist index e6f4652..43479be 100644 --- a/Sources/Info.plist +++ b/Sources/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 0.1 + 0.1.1 CFBundleVersion $(CURRENT_PROJECT_VERSION) NSPrincipalClass diff --git a/Sources/LocalizedUserNotificationStringResource.swift b/Sources/LocalizedUserNotificationStringResource.swift index f787359..653cd96 100644 --- a/Sources/LocalizedUserNotificationStringResource.swift +++ b/Sources/LocalizedUserNotificationStringResource.swift @@ -9,7 +9,6 @@ import UserNotifications /// A protocol that describes an item that can represent a localized user notification string. -@available(iOSApplicationExtension 10.0, *) public protocol LocalizedUserNotificationStringDescribing { /// The `String` that will be used to represent the key of the localized user notification string. @@ -20,7 +19,6 @@ public protocol LocalizedUserNotificationStringDescribing { } -@available(iOSApplicationExtension 10.0, *) public extension LocalizedUserNotificationStringDescribing { var arguments: [Any]? { @@ -29,7 +27,6 @@ public extension LocalizedUserNotificationStringDescribing { } -@available(iOSApplicationExtension 10.0, *) public extension Resource { /// Returns a `String` that is represented by the item that conforms to `LocalizedUserNotificationStringDescribing`.