Skip to content

Commit 7cf5f9f

Browse files
committed
fix IPHONEOS_DEPLOYMENT_TARGET
1 parent c4bb039 commit 7cf5f9f

File tree

6 files changed

+30
-10
lines changed

6 files changed

+30
-10
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
2.0.1 Release notes (2019-09-24)
2+
=============================================================
3+
4+
### API Breaking Changes
5+
6+
* Stoped support iOS8.
7+
* LSApplicationQueriesSchemes is always required to see if studyplus is installed. Please check README.md.
8+
9+
### Enhancements
10+
11+
* None.
12+
13+
### Bugfixes
14+
15+
* None.
16+
117
2.0.0 Release notes (2019-09-24)
218
=============================================================
319

Demo/Info.plist

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@
22
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
33
<plist version="1.0">
44
<dict>
5-
<key>LSApplicationQueriesSchemes</key>
6-
<array>
7-
<string>studyplus</string>
8-
</array>
95
<key>CFBundleDevelopmentRegion</key>
106
<string>en</string>
117
<key>CFBundleExecutable</key>
@@ -19,7 +15,7 @@
1915
<key>CFBundlePackageType</key>
2016
<string>APPL</string>
2117
<key>CFBundleShortVersionString</key>
22-
<string>2.0.0</string>
18+
<string>$(MARKETING_VERSION)</string>
2319
<key>CFBundleURLTypes</key>
2420
<array>
2521
<dict>
@@ -35,6 +31,10 @@
3531
</array>
3632
<key>CFBundleVersion</key>
3733
<string>1</string>
34+
<key>LSApplicationQueriesSchemes</key>
35+
<array>
36+
<string>studyplus</string>
37+
</array>
3838
<key>LSRequiresIPhoneOS</key>
3939
<true/>
4040
<key>StudyplusSDK</key>

StudyplusSDK-V2.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "StudyplusSDK-V2"
3-
s.version = "2.0.0"
3+
s.version = "2.0.1"
44
s.summary = "StudyplusSDK-V2 is Studyplus iOS SDK for Swift"
55
s.homepage = "https://info.studyplus.jp"
66
s.license = { :type => "MIT", :file => "LICENSE" }

StudyplusSDK.xcodeproj/project.pbxproj

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@
566566
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
567567
GCC_WARN_UNUSED_FUNCTION = YES;
568568
GCC_WARN_UNUSED_VARIABLE = YES;
569-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
569+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
570570
MTL_ENABLE_DEBUG_INFO = YES;
571571
ONLY_ACTIVE_ARCH = YES;
572572
OTHER_SWIFT_FLAGS = "-D DEBUG";
@@ -624,7 +624,7 @@
624624
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
625625
GCC_WARN_UNUSED_FUNCTION = YES;
626626
GCC_WARN_UNUSED_VARIABLE = YES;
627-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
627+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
628628
MTL_ENABLE_DEBUG_INFO = NO;
629629
OTHER_SWIFT_FLAGS = "-D RELEASE";
630630
SDKROOT = iphoneos;
@@ -657,6 +657,7 @@
657657
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
658658
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
659659
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
660+
MARKETING_VERSION = 2.0.1;
660661
OTHER_SWIFT_FLAGS = "$(inherited)";
661662
PRODUCT_BUNDLE_IDENTIFIER = com.studyplus.StudyplusSDK;
662663
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -685,6 +686,7 @@
685686
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
686687
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
687688
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
689+
MARKETING_VERSION = 2.0.1;
688690
OTHER_SWIFT_FLAGS = "$(inherited)";
689691
PRODUCT_BUNDLE_IDENTIFIER = com.studyplus.StudyplusSDK;
690692
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -727,6 +729,7 @@
727729
INFOPLIST_FILE = Demo/Info.plist;
728730
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
729731
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
732+
MARKETING_VERSION = 2.0.1;
730733
OTHER_SWIFT_FLAGS = "$(inherited)";
731734
PRODUCT_BUNDLE_IDENTIFIER = com.studyplus.Demo;
732735
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -744,6 +747,7 @@
744747
INFOPLIST_FILE = Demo/Info.plist;
745748
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
746749
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
750+
MARKETING_VERSION = 2.0.1;
747751
OTHER_SWIFT_FLAGS = "$(inherited)";
748752
PRODUCT_BUNDLE_IDENTIFIER = com.studyplus.Demo;
749753
PRODUCT_NAME = "$(TARGET_NAME)";

StudyplusSDK/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>2.0.0</string>
18+
<string>$(MARKETING_VERSION)</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
<key>NSPrincipalClass</key>

StudyplusSDK/Studyplus.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ final public class Studyplus {
4141

4242
StudyplusSDKのバージョンを返します
4343
*/
44-
public static let SDKVersion: String = "2.0.0"
44+
public static let SDKVersion: String = "2.0.1"
4545

4646
/**
4747
Returns the shared defaults object.

0 commit comments

Comments
 (0)