This repository was archived by the owner on Oct 14, 2018. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +16
-6
lines changed Expand file tree Collapse file tree 4 files changed +16
-6
lines changed Original file line number Diff line number Diff line change @@ -6,8 +6,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
6
6
7
7
## [ Unreleased]
8
8
9
+ ## [ 1.0.1] - 2017-10-03
10
+ ### Added
11
+ - Use of DispatchQueue for parsing JSON and calling callback functions.
12
+ ### Changed
13
+ - The source code is now a little simpler thanks to the use of ` typealias ` .
14
+ - The structure of the functions has changed, there are two callbacks now (` success ` and ` failure ` ) instead of just one.
15
+ ### Fixed
16
+ - Login page ` WKWebView ` now fits correctly when rotating device.
17
+
9
18
## 1.0.0 - 2017-09-30
10
19
### Added
11
20
- Initial release.
12
21
13
- [ Unreleased ] : https://github.com/AnderGoig/SwiftInstagram/compare/v1.0.0...HEAD
22
+ [ Unreleased ] : https://github.com/AnderGoig/SwiftInstagram/compare/v1.0.1...HEAD
23
+ [ 1.0.1 ] : https://github.com/AnderGoig/SwiftInstagram/compare/v1.0.0...v1.0.1
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ source 'https://github.com/CocoaPods/Specs.git'
77
77
platform :ios , ' 9.0'
78
78
use_frameworks!
79
79
80
- pod ' SwiftInstagram' , ' ~> 1.0.0 '
80
+ pod ' SwiftInstagram' , ' ~> 1.0.1 '
81
81
```
82
82
83
83
Then, run the following command:
@@ -100,7 +100,7 @@ $ brew install carthage
100
100
To integrate SwiftInstagram into your Xcode project using Carthage, specify it in your ` Cartfile ` :
101
101
102
102
``` ogdl
103
- github "AnderGoig/SwiftInstagram" ~> 1.0.0
103
+ github "AnderGoig/SwiftInstagram" ~> 1.0.1
104
104
```
105
105
### Swift Package Manager
106
106
@@ -112,7 +112,7 @@ import PackageDescription
112
112
let package = Package (
113
113
name : " HelloSwiftInstagram" ,
114
114
dependencies : [
115
- .Package (url : " https://github.com/AnderGoig/SwiftInstagram.git" , " 1.0.0 " )
115
+ .Package (url : " https://github.com/AnderGoig/SwiftInstagram.git" , " 1.0.1 " )
116
116
]
117
117
)
118
118
```
Original file line number Diff line number Diff line change 15
15
<key >CFBundlePackageType </key >
16
16
<string >FMWK </string >
17
17
<key >CFBundleShortVersionString </key >
18
- <string >1.0.0 </string >
18
+ <string >1.0.1 </string >
19
19
<key >CFBundleVersion </key >
20
20
<string >$(CURRENT_PROJECT_VERSION) </string >
21
21
<key >NSPrincipalClass </key >
Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = 'SwiftInstagram'
3
- s . version = '1.0.0 '
3
+ s . version = '1.0.1 '
4
4
s . license = { :type => "MIT" , :file => "LICENSE" }
5
5
s . summary = 'A Swift wrapper for the Instagram API'
6
6
s . homepage = 'https://github.com/AnderGoig/SwiftInstagram'
You can’t perform that action at this time.
0 commit comments