Skip to content
This repository was archived by the owner on Oct 14, 2018. It is now read-only.

Commit 568c4e0

Browse files
committed
Adds release notes to the CHANGELOG and bumps the version to 1.0.2
1 parent 8834de4 commit 568c4e0

File tree

4 files changed

+17
-6
lines changed

4 files changed

+17
-6
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## [Unreleased]
88

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+
919
## [1.0.1] - 2017-10-03
1020
### Added
1121
- 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.
1929
### Added
2030
- Initial release.
2131

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
2334
[1.0.1]: https://github.com/AnderGoig/SwiftInstagram/compare/v1.0.0...v1.0.1

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ source 'https://github.com/CocoaPods/Specs.git'
8484
platform :ios, '9.0'
8585
use_frameworks!
8686

87-
pod 'SwiftInstagram', '~> 1.0.1'
87+
pod 'SwiftInstagram', '~> 1.0.2'
8888
```
8989

9090
Then, run the following command:
@@ -107,7 +107,7 @@ $ brew install carthage
107107
To integrate SwiftInstagram into your Xcode project using Carthage, specify it in your `Cartfile`:
108108

109109
```ogdl
110-
github "AnderGoig/SwiftInstagram" ~> 1.0.1
110+
github "AnderGoig/SwiftInstagram" ~> 1.0.2
111111
```
112112
### Swift Package Manager
113113

@@ -119,7 +119,7 @@ import PackageDescription
119119
let package = Package(
120120
name: "HelloSwiftInstagram",
121121
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")
123123
]
124124
)
125125
```

Sources/Supporting Files/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>1.0.1</string>
18+
<string>1.0.2</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
<key>NSPrincipalClass</key>

SwiftInstagram.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 = 'SwiftInstagram'
3-
s.version = '1.0.1'
3+
s.version = '1.0.2'
44
s.license = { :type => "MIT", :file => "LICENSE" }
55
s.summary = 'A Swift wrapper for the Instagram API'
66
s.homepage = 'https://github.com/AnderGoig/SwiftInstagram'

0 commit comments

Comments
 (0)