Skip to content

Commit 09cc833

Browse files
authored
Merge pull request #8 from studyplus/4.0.0
4.0.0
2 parents 742dafe + 08736f1 commit 09cc833

File tree

5 files changed

+15
-219
lines changed

5 files changed

+15
-219
lines changed

CHANGELOG.md

Lines changed: 1 addition & 205 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
3.0.0 Release notes (2021-03-29)
1+
4.0.0 Release notes (2021-04-01)
22
=============================================================
33

44
### API Breaking Changes
@@ -15,207 +15,3 @@
1515
### Bugfixes
1616

1717
* None.
18-
19-
2.0.1 Release notes (2019-09-24)
20-
=============================================================
21-
22-
### API Breaking Changes
23-
24-
* Stoped support iOS8.
25-
* LSApplicationQueriesSchemes is always required to see if studyplus is installed. Please check README.md.
26-
27-
### Enhancements
28-
29-
* None.
30-
31-
### Bugfixes
32-
33-
* None.
34-
35-
2.0.0 Release notes (2019-09-24)
36-
=============================================================
37-
38-
### API Breaking Changes
39-
40-
* Stoped support iOS8.
41-
* LSApplicationQueriesSchemes is always required to see if studyplus is installed. Please check README.md.
42-
43-
### Enhancements
44-
45-
* None.
46-
47-
### Bugfixes
48-
49-
* Fixed to check if studyplus is installed.
50-
51-
1.3.6 Release notes (2019-08-30)
52-
=============================================================
53-
54-
### API Breaking Changes
55-
56-
* None.
57-
58-
### Enhancements
59-
60-
* show sdk verison string.
61-
62-
### Bugfixes
63-
64-
* None.
65-
66-
1.3.3 Release notes (2019-08-30)
67-
=============================================================
68-
69-
### API Breaking Changes
70-
71-
* None.
72-
73-
### Enhancements
74-
75-
* None.
76-
77-
### Bugfixes
78-
79-
* None.
80-
81-
1.3.2 Release notes (2019-06-21)
82-
=============================================================
83-
84-
### API Breaking Changes
85-
86-
* None.
87-
88-
### Enhancements
89-
90-
* change url of app store
91-
92-
### Bugfixes
93-
94-
* None.
95-
96-
1.3.1 Release notes (2019-06-17)
97-
=============================================================
98-
99-
### API Breaking Changes
100-
101-
* None.
102-
103-
### Enhancements
104-
105-
* added lower than 24 hours validation when post study record.
106-
107-
### Bugfixes
108-
109-
* None.
110-
111-
1.3.0 Release notes (2019-04-09)
112-
=============================================================
113-
114-
### API Breaking Changes
115-
116-
* None.
117-
118-
### Enhancements
119-
120-
* change the consumer key and secret.
121-
* You can call this method to switch to a different key when logging in to Studyplus or posting study records.
122-
* If multiple applications are connected with Studyplus, you need to call this method.
123-
* If there is only one connected application, you do not need to call this method.
124-
* Built with Xcode 10.2 & Swift 5.
125-
* Update library.
126-
127-
### Bugfixes
128-
129-
* None.
130-
131-
1.2.1 Release notes (2019-01-15)
132-
=============================================================
133-
134-
### API Breaking Changes
135-
136-
* None.
137-
138-
### Enhancements
139-
140-
* Built with Xcode 10 & Swift 4.2.
141-
* Update library.
142-
143-
### Bugfixes
144-
145-
* None.
146-
147-
1.2.0 Release notes (2018-07-02)
148-
=============================================================
149-
150-
### API Breaking Changes
151-
152-
* None.
153-
154-
### Enhancements
155-
156-
* None.
157-
158-
### Bugfixes
159-
160-
* fail to post study record when 24 hour system setting is invalid.
161-
162-
1.1.1 Release notes (2017-11-14)
163-
=============================================================
164-
165-
### API Breaking Changes
166-
167-
* None.
168-
169-
### Enhancements
170-
171-
* None
172-
173-
### Bugfixes
174-
175-
* use shared when call URLSession.
176-
177-
1.1.0 Release notes (2017-09-25)
178-
=============================================================
179-
180-
### API Breaking Changes
181-
182-
* None.
183-
184-
### Enhancements
185-
186-
* Build with Xcode 9 and Converted the project to Swift 4
187-
188-
### Bugfixes
189-
190-
* None.
191-
192-
1.0.9 Release notes (2017-07-06)
193-
=============================================================
194-
195-
### API Breaking Changes
196-
197-
* None.
198-
199-
### Enhancements
200-
201-
* None.
202-
203-
### Bugfixes
204-
205-
* Fixed warning that license file can not be read when pod install
206-
207-
1.0.8 Release notes (2017-07-06)
208-
=============================================================
209-
210-
### API Breaking Changes
211-
212-
* None.
213-
214-
### Enhancements
215-
216-
* None.
217-
218-
### Bugfixes
219-
220-
* Display date string with current local
221-
* Call finishTasksAndInvalidate

Package.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@
33
import PackageDescription
44

55
let package = Package(
6-
name: "StudyplusSDK-V2",
6+
name: "StudyplusSDK",
77
platforms: [
88
.iOS(.v11)
99
],
1010
products: [
1111
.library(
12-
name: "StudyplusSDK-V2",
13-
targets: ["StudyplusSDK-V2"]
12+
name: "StudyplusSDK",
13+
targets: ["StudyplusSDK"]
1414
)
1515
],
1616
targets: [
1717
.target(
18-
name: "StudyplusSDK-V2",
18+
name: "StudyplusSDK",
1919
path: "Lib/StudyplusSDK"
2020
)
2121
]

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# StudyplusSDK-V2
1+
# StudyplusSDK
22

33
## Requirements
44

@@ -9,15 +9,15 @@
99

1010
### [Swift Package Manager](https://github.com/apple/swift-package-manager/)
1111

12-
<https://github.com/studyplus/Studyplus-iOS-SDK-V2>を追加してください。
12+
<https://github.com/studyplus/Studyplus-iOS-SDK>を追加してください。
1313

1414
### [CocoaPods](https://cocoapods.org/)
1515

16-
Podfileに `StudyplusSDK-V2` を追加してください。
16+
Podfileに `StudyplusSDK` を追加してください。
1717

1818
```ruby
1919
use_frameworks!
20-
pod 'StudyplusSDK-V2'
20+
pod 'StudyplusSDK'
2121
```
2222

2323
## Usage
@@ -29,7 +29,7 @@ pod 'StudyplusSDK-V2'
2929

3030
__studyplus-*{consumer key}*__ を URL Typesに追加してください。
3131

32-
![xcode](https://github.com/studyplus/Studyplus-iOS-SDK-V2/blob/master/docs/set_url_scheme.png)
32+
![xcode](https://github.com/studyplus/Studyplus-iOS-SDK/blob/main/docs/set_url_scheme.png)
3333

3434
### `consumer key``consumer secret`の追加
3535

@@ -119,7 +119,7 @@ Studyplus.shared.post(record, completion: { result in
119119

120120
## Demo app
121121

122-
![demo](https://github.com/studyplus/Studyplus-iOS-SDK-V2/blob/main/docs/demoapp_v2.jpg)
122+
![demo](https://github.com/studyplus/Studyplus-iOS-SDK/blob/main/docs/demoapp.jpg)
123123

124124
- Set __studyplus-*{your consumer key}*__ to URL Types in Demo.
125125
- Set __consumerKey__ and __consumerSecret__ in Info.plist of Demo.

StudyplusSDK-V2.podspec renamed to StudyplusSDK.podspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
Pod::Spec.new do |s|
2-
s.name = "StudyplusSDK-V2"
3-
s.version = "3.0.0"
4-
s.summary = "StudyplusSDK-V2 is Studyplus iOS SDK for Swift"
2+
s.name = "StudyplusSDK"
3+
s.version = "4.0.0"
4+
s.summary = "StudyplusSDK is Studyplus iOS SDK for Swift"
55
s.homepage = "https://info.studyplus.jp"
66
s.license = "MIT"
7-
s.source = { :git => "https://github.com/studyplus/Studyplus-iOS-SDK-V2.git", :tag => s.version }
7+
s.source = { :git => "https://github.com/studyplus/Studyplus-iOS-SDK.git", :tag => s.version }
88
s.source_files = "StudyplusSDK", "Lib/StudyplusSDK/**/*.{swift}"
99
s.platform = :ios, '11.0'
1010
s.ios.deployment_target = '11.0'
File renamed without changes.

0 commit comments

Comments
 (0)