diff --git a/CHANGELOG.md b/CHANGELOG.md index f0f792f2..bbabeb57 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ ## Changelog :memo: +### 2.1.0 (03/01/2015) +* Fix crash on calling `sharedInstance` [#47](https://github.com/thibaultCha/TCBlobDownload/issues/47) +* Better handling of the `NSOperation` states +* Expose `TCBlobDownloadErrorDomain` +* Remove `TCBlobDownloadErrorConnectionFailed` and directly return the `NSURLErrorDomain` error in case of connection failure +* Fix Travis tests not executing + ### 2.0.1 (01/01/2015) * Fix a warning regarding a property's attribute in `TCBlobDownload` * The `TCBlobDownloadManager` sharedInstance's `NSOperationQueue` is named diff --git a/TCBlobDownload.podspec b/TCBlobDownload.podspec index d82f3814..a2997c90 100644 --- a/TCBlobDownload.podspec +++ b/TCBlobDownload.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "TCBlobDownload" - s.version = "2.0.1" + s.version = "2.1.0" s.summary = "Competitive large files downloads for iOS" s.homepage = "https://github.com/thibaultCha/TCBlobDownload" s.license = 'MIT' @@ -9,7 +9,7 @@ Pod::Spec.new do |s| s.ios.deployment_target = '5.1.1' s.source = { :git => "https://github.com/thibaultCha/TCBlobDownload.git", - :tag => "2.0.1" + :tag => "2.1.0" } s.source_files = 'TCBlobDownload/TCBlobDownload/**/*.{h,m}' s.requires_arc = true diff --git a/TCBlobDownload/Docs/TCBlobDownloadDocset.zip b/TCBlobDownload/Docs/TCBlobDownloadDocset.zip index 020d05e6..446c47b4 100644 Binary files a/TCBlobDownload/Docs/TCBlobDownloadDocset.zip and b/TCBlobDownload/Docs/TCBlobDownloadDocset.zip differ