Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinJiaDev committed Nov 15, 2016
1 parent 9de24de commit 76fbd75
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 11 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions Resource.podspec
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
8 changes: 4 additions & 4 deletions Resource.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -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)";
Expand All @@ -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)";
Expand Down Expand Up @@ -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)";
Expand All @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion Sources/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.1</string>
<string>0.1.1</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down
3 changes: 0 additions & 3 deletions Sources/LocalizedUserNotificationStringResource.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -20,7 +19,6 @@ public protocol LocalizedUserNotificationStringDescribing {

}

@available(iOSApplicationExtension 10.0, *)
public extension LocalizedUserNotificationStringDescribing {

var arguments: [Any]? {
Expand All @@ -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`.
Expand Down

0 comments on commit 76fbd75

Please sign in to comment.