Skip to content

Commit

Permalink
Merge pull request #97 from 8W9aG/version-1.1
Browse files Browse the repository at this point in the history
Update version to 1.1
  • Loading branch information
8W9aG committed Feb 15, 2016
2 parents 8b049e8 + 2c7fd8c commit 9aa3b97
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 4 deletions.
21 changes: 20 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,25 @@ All notable changes to this project will be documented in this file. SPTDataLoad

--

## [1.1.0](https://github.com/spotify/SPTDataLoader/releases/tag/1.1.0)
_Released on 2016-02-15._

### Added
* Added support for watchOS and tvOS.
* Added error handling when a chunked request is made without the delegate supporting chunks.

### Fixed
* Fixed HTTP errors not being correctly reported if they are not above the 400 HTTP status codes.
* Fixed a bug allowing infinite retries of requests.

### Removed
* Removed the non-optional status of cancellation callbacks in the delegate.

### Changed
* Changed Accept-Language values to be publically accessible.
* Changed blanket HTTPS certificate accepting a runtime variable rather than a preprocessor macro.
* Changed the name of SPTCancellationToken to SPTDataLoaderCancellationToken.

## [1.0.1](https://github.com/spotify/SPTDataLoader/releases/tag/1.0.1)
_Released on 2015-12-22._

Expand All @@ -28,7 +47,7 @@ _Released on 2015-12-22._
* Fixed HTTP redirects not working.

## [1.0.0](https://github.com/spotify/SPTDataLoader/releases/tag/1.0.0)
_Released on 2015-02-01.
_Released on 2015-02-01._

### Added
* Initial release of SPTDataLoader.
2 changes: 1 addition & 1 deletion Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0.2</string>
<string>1.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ $ gem install cocoapods
```
Then simply add `SPTDataLoader` to your `Podfile`.
```
pod 'SPTDataLoader', '~> 1.0'
pod 'SPTDataLoader', '~> 1.1'
```
Lastly let CocoaPods do it thing by running:
```shell
Expand All @@ -59,7 +59,7 @@ $ brew install carthage
```
You will also need to add `SPTDataLoader` to your `Cartfile`:
```
github 'spotify/SPTDataLoader' ~> 1.0
github 'spotify/SPTDataLoader' ~> 1.1
```
After that is all said and done, let Carthage pull in SPTDataLoader like so:
```shell
Expand Down
2 changes: 2 additions & 0 deletions SPTDataLoader.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@
056E52381A11275700E8716C /* SPTDataLoaderRequest+Private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "SPTDataLoaderRequest+Private.h"; sourceTree = "<group>"; };
056E523C1A11348800E8716C /* SPTDataLoaderRequestResponseHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SPTDataLoaderRequestResponseHandler.h; sourceTree = "<group>"; };
056E523E1A113A2B00E8716C /* SPTDataLoaderExponentialTimer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SPTDataLoaderExponentialTimer.m; sourceTree = "<group>"; };
057AFD5C1C72143F00350C9F /* CHANGELOG.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = CHANGELOG.md; sourceTree = "<group>"; };
05896F8A1C51F3850051CC1E /* spotify_os.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = spotify_os.xcconfig; sourceTree = "<group>"; };
059940411A14BA28006D6BE9 /* SPTDataLoaderRequestResponseHandlerMock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SPTDataLoaderRequestResponseHandlerMock.h; sourceTree = "<group>"; };
059940421A14BA28006D6BE9 /* SPTDataLoaderRequestResponseHandlerMock.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SPTDataLoaderRequestResponseHandlerMock.m; sourceTree = "<group>"; };
Expand Down Expand Up @@ -273,6 +274,7 @@
056A04BA1A13D29C00FA72AD /* Supporting Files */ = {
isa = PBXGroup;
children = (
057AFD5C1C72143F00350C9F /* CHANGELOG.md */,
056A04BB1A13D2BD00FA72AD /* README.md */,
);
name = "Supporting Files";
Expand Down

0 comments on commit 9aa3b97

Please sign in to comment.