Skip to content
This repository has been archived by the owner on Jan 17, 2023. It is now read-only.

Commit

Permalink
Bumping version to 1.3.0
Browse files Browse the repository at this point in the history
Updating release notes
  • Loading branch information
mattt committed Jun 2, 2013
1 parent b8d1483 commit 5c74140
Show file tree
Hide file tree
Showing 2 changed files with 73 additions and 4 deletions.
8 changes: 5 additions & 3 deletions AFNetworking.podspec
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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
end
69 changes: 68 additions & 1 deletion CHANGES
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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)
initializers (Mattt Thompson, Serge Paquet)

0 comments on commit 5c74140

Please sign in to comment.