From ce1ebf3038aaa07053acdddeb4e4f49e1429ef9e Mon Sep 17 00:00:00 2001 From: Mattt Thompson Date: Wed, 25 Sep 2013 16:01:53 -0700 Subject: [PATCH] Bumping version to 1.3.3 --- AFNetworking.podspec | 4 ++-- CHANGES | 48 +++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 49 insertions(+), 3 deletions(-) diff --git a/AFNetworking.podspec b/AFNetworking.podspec index 929ecfd..b72ffa9 100644 --- a/AFNetworking.podspec +++ b/AFNetworking.podspec @@ -1,11 +1,11 @@ Pod::Spec.new do |s| s.name = 'AFNetworking' - s.version = '1.3.2' + s.version = '1.3.3' s.license = 'MIT' s.summary = 'A delightful iOS and OS X networking framework.' s.homepage = 'https://github.com/AFNetworking/AFNetworking' s.authors = { 'Mattt Thompson' => 'm@mattt.me', 'Scott Raymond' => 'sco@gowalla.com' } - s.source = { :git => 'https://github.com/AFNetworking/AFNetworking.git', :tag => '1.3.2' } + s.source = { :git => 'https://github.com/AFNetworking/AFNetworking.git', :tag => '1.3.3' } s.source_files = 'AFNetworking' s.requires_arc = true diff --git a/CHANGES b/CHANGES index e7ff4c0..f50e7c9 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,52 @@ += 1.3.3 (2013-09-25) + + * Add stream error handling to `AFMultipartBodyStream` (Nicolas Bachschmidt, +Mattt Thompson) + + * Add stream error handling to `AFURLConnectionOperation +-connection:didReceiveData:` (Ian Duggan, Mattt Thompson) + + * Fix parameter query string encoding of square brackets according to RFC +3986 (Kra Larivain) + + * Fix AFHTTPBodyPart determination of end of input stream data (Brian Croom) + + * Fix unit test timeouts (Carson McDonald) + + * Fix truncated `User-Agent` header field when app contained non-ASCII +characters (Diego Torres) + + * Fix outdated link in documentation (Jonas Schmid) + + * Fix `AFHTTPRequestOperation` `HTTPError` property to be thread-safe +(Oliver Letterer, Mattt Thompson) + + * Fix API compatibility with iOS 5 (Blake Watters, Mattt Thompson) + + * Fix potential race condition in `AFURLConnectionOperation +-cancelConnection` (@mm-jkolb, Mattt Thompson) + + * Remove implementation of `connection:needNewBodyStream:` delegate method +in `AFURLConnectionOperation`, which fixes stream errors on authentication +challenges (Mattt Thompson) + + * Fix calculation of network reachability from flags (Tracy Pesin, Mattt +Thompson) + + * Update AFHTTPClient documentation to clarify scope of `parameterEncoding` +property (Thomas Catterall) + + * Update `UIImageView` category to allow for nested calls to +`setImageWithURLRequest:` (Philippe Converset) + + * Change `UIImageView` category to accept invalid SSL certificates when +`_AFNETWORKING_ALLOW_INVALID_SSL_CERTIFICATES_` is defined (Flávio Caetano) + + * Change to replace #pragma clang with cast (Cédric Luthi) + = 1.3.2 (2013-08-08) - * Add return status checks when building list of pinned public keys (Sylvain + * Add return status checks when building list of pinned public keys (Sylvain Guillope) * Add return status checks when handling connection authentication challenges