Bumping version to 1.3.0
Updating release notes
This commit is contained in:
parent
b8d1483ea3
commit
5c7414032e
2 changed files with 73 additions and 4 deletions
|
|
@ -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 <SystemConfiguration/SystemConfiguration.h>
|
||||
#import <MobileCoreServices/MobileCoreServices.h>
|
||||
#import <Security/Security.h>
|
||||
#else
|
||||
#import <SystemConfiguration/SystemConfiguration.h>
|
||||
#import <CoreServices/CoreServices.h>
|
||||
#import <Security/Security.h>
|
||||
#endif
|
||||
EOS
|
||||
end
|
||||
67
CHANGES
67
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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue