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 +17
-6
lines changed Expand file tree Collapse file tree 4 files changed +17
-6
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
6
6
7
7
## [ Unreleased]
8
8
9
+ ## [ 1.0.2] - 2017-10-07
10
+ ### Added
11
+ - ` InstagramLoginViewController ` hides automatically when concludes.
12
+ - ` @discardableResult ` to ` logout() ` method.
13
+ ### Changed
14
+ - Better code organization, especially for networking.
15
+ ### Fixed
16
+ - Authorization process errors are now correctly captured.
17
+ - Travis CI build error.
18
+
9
19
## [ 1.0.1] - 2017-10-03
10
20
### Added
11
21
- Use of ` DispatchQueue ` for parsing JSON and calling callback functions.
@@ -19,5 +29,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
19
29
### Added
20
30
- Initial release.
21
31
22
- [ Unreleased ] : https://github.com/AnderGoig/SwiftInstagram/compare/v1.0.1...HEAD
32
+ [ Unreleased ] : https://github.com/AnderGoig/SwiftInstagram/compare/v1.0.2...develop
33
+ [ 1.0.2 ] : https://github.com/AnderGoig/SwiftInstagram/compare/v1.0.1...v1.0.2
23
34
[ 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 @@ -84,7 +84,7 @@ source 'https://github.com/CocoaPods/Specs.git'
84
84
platform :ios , ' 9.0'
85
85
use_frameworks!
86
86
87
- pod ' SwiftInstagram' , ' ~> 1.0.1 '
87
+ pod ' SwiftInstagram' , ' ~> 1.0.2 '
88
88
```
89
89
90
90
Then, run the following command:
@@ -107,7 +107,7 @@ $ brew install carthage
107
107
To integrate SwiftInstagram into your Xcode project using Carthage, specify it in your ` Cartfile ` :
108
108
109
109
``` ogdl
110
- github "AnderGoig/SwiftInstagram" ~> 1.0.1
110
+ github "AnderGoig/SwiftInstagram" ~> 1.0.2
111
111
```
112
112
### Swift Package Manager
113
113
@@ -119,7 +119,7 @@ import PackageDescription
119
119
let package = Package (
120
120
name : " HelloSwiftInstagram" ,
121
121
dependencies : [
122
- .Package (url : " https://github.com/AnderGoig/SwiftInstagram.git" , " 1.0.1 " )
122
+ .Package (url : " https://github.com/AnderGoig/SwiftInstagram.git" , " 1.0.2 " )
123
123
]
124
124
)
125
125
```
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.1 </string >
18
+ <string >1.0.2 </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.1 '
3
+ s . version = '1.0.2 '
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