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

Commit 452bf48

Browse files
committed
Adds release notes to the CHANGELOG and bumps the version to 1.0.1
1 parent 314dc54 commit 452bf48

File tree

4 files changed

+16
-6
lines changed

4 files changed

+16
-6
lines changed

CHANGELOG.md

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

77
## [Unreleased]
88

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+
918
## 1.0.0 - 2017-09-30
1019
### Added
1120
- Initial release.
1221

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

README.md

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

80-
pod 'SwiftInstagram', '~> 1.0.0'
80+
pod 'SwiftInstagram', '~> 1.0.1'
8181
```
8282

8383
Then, run the following command:
@@ -100,7 +100,7 @@ $ brew install carthage
100100
To integrate SwiftInstagram into your Xcode project using Carthage, specify it in your `Cartfile`:
101101

102102
```ogdl
103-
github "AnderGoig/SwiftInstagram" ~> 1.0.0
103+
github "AnderGoig/SwiftInstagram" ~> 1.0.1
104104
```
105105
### Swift Package Manager
106106

@@ -112,7 +112,7 @@ import PackageDescription
112112
let package = Package(
113113
name: "HelloSwiftInstagram",
114114
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")
116116
]
117117
)
118118
```

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.0</string>
18+
<string>1.0.1</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.0'
3+
s.version = '1.0.1'
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)