diff --git a/AFNetworking.podspec b/AFNetworking.podspec index e6ee683..f8c139d 100644 --- a/AFNetworking.podspec +++ b/AFNetworking.podspec @@ -1,11 +1,11 @@ Pod::Spec.new do |s| s.name = 'AFNetworking' - s.version = '1.2.1' + s.version = '1.3.0' 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.2.1' } + s.source = { :git => 'https://github.com/AFNetworking/AFNetworking.git', :tag => '1.3.0' } s.source_files = 'AFNetworking' s.requires_arc = true @@ -23,9 +23,11 @@ Pod::Spec.new do |s| #if __IPHONE_OS_VERSION_MIN_REQUIRED #import #import + #import #else #import #import + #import #endif EOS -end +end \ No newline at end of file diff --git a/CHANGES b/CHANGES index a8ba027..5d71b01 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,70 @@ += 1.3.0 (2013-06-01) + + * Add unit testing and continuous integration system (Blake Watters, Oliver +Letterer, Kevin Harwood, Cédric Luthi, Adam Fraser, Carson McDonald, Mattt +Thompson) + + * Fix multipart input stream implementation (Blake Watters, OliverLetterer, +Aleksey Kononov, @mattyohe, @mythodeia, @JD-) + + * Fix implementation of authentication delegate methods (Oliver Letterer, +Kevin Harwood) + + * Fix implementation of AFSSLPinningModePublicKey on Mac OS X (Oliver Letterer) + + * Fix error caused by loading file:// requests with AFHTTPRequestOperation +subclasses (Dave Anderson, Oliver Letterer) + + * Fix threading-related crash in AFNetworkActivityIndicatorManager (Dave Keck) + + * Fix to suppress GNU expression and enum assignment warnings from Clang +(Henrik Hartz) + + * Fix leak caused by CFStringConvertEncodingToIANACharSetName in AFHTTPClient +-requestWithMethod:path:parameters: (Daniel Demiss) + + * Fix missing __bridge casts in AFHTTPClient (@apouche, Mattt Thompson) + + * Fix Objective-C++ compatibility (Audun Holm Ellertsen) + + * Fix to not escape tildes (@joein3d) + + * Fix warnings caused by unsynthesized properties (Jeff Hunter) + + * Fix to network reachability calls to provide correct status on +initialization (@djmadcat, Mattt Thompson) + + * Fix to suppress warnings about implicit signedness conversion (Matt Rubin) + + * Fix AFJSONRequestOperation -responseJSON failing cases (Andrew Vyazovoy, +Mattt Thompson) + + * Fix use of object subscripting to avoid incompatibility with iOS < 6 and OS +X < 10.8 (Paul Melnikow) + + * Change behavior of + + * Change in AFHTTPClient to @throw exception when non-designated intializer is +used (Kyle Fuller) + + * Change in behavior of connection:didReceiveAuthenticationChallenge: to not +use URL-encoded credentials, which should already have been applied (@xjdrew) + + * Change to set AFJSONRequestOperation error when unable to decode response +string (Chris Pickslay, Geoff Nix) + + * Change AFURLConnectionOperation to lazily initialize outputStream property +(@fumoboy007) + + * Change instances of (CFStringRef)NSRunLoopCommonModes to +kCFRunLoopCommonModes + + * Change #warning to #pragma message for dynamic framework linking warnings +(@michael_r_may) + + * Various fixes to reverted multipart stream provider implementation (Yaron +Inger, Alex Burgel) + = 1.2.1 (2013-04-18) * Add `allowsInvalidSSLCertificate` property to `AFURLConnectionOperation` and @@ -677,4 +744,4 @@ where % is used as a literal rather than as part of a percent escape code * Fix compiler warnings for certain configurations (Charlie Williams) * Fix bug caused by passing zero-length `responseData` to response object - initializers (Mattt Thompson, Serge Paquet) \ No newline at end of file + initializers (Mattt Thompson, Serge Paquet)