Bumping version to 1.2.1
Updating CHANGES for 1.2.1
This commit is contained in:
parent
c28434ce71
commit
215a32e23c
2 changed files with 41 additions and 2 deletions
|
|
@ -1,11 +1,11 @@
|
||||||
Pod::Spec.new do |s|
|
Pod::Spec.new do |s|
|
||||||
s.name = 'AFNetworking'
|
s.name = 'AFNetworking'
|
||||||
s.version = '1.2.0'
|
s.version = '1.2.1'
|
||||||
s.license = 'MIT'
|
s.license = 'MIT'
|
||||||
s.summary = 'A delightful iOS and OS X networking framework.'
|
s.summary = 'A delightful iOS and OS X networking framework.'
|
||||||
s.homepage = 'https://github.com/AFNetworking/AFNetworking'
|
s.homepage = 'https://github.com/AFNetworking/AFNetworking'
|
||||||
s.authors = { 'Mattt Thompson' => 'm@mattt.me', 'Scott Raymond' => 'sco@gowalla.com' }
|
s.authors = { 'Mattt Thompson' => 'm@mattt.me', 'Scott Raymond' => 'sco@gowalla.com' }
|
||||||
s.source = { :git => 'https://github.com/AFNetworking/AFNetworking.git', :tag => '1.2.0' }
|
s.source = { :git => 'https://github.com/AFNetworking/AFNetworking.git', :tag => '1.2.1' }
|
||||||
s.source_files = 'AFNetworking'
|
s.source_files = 'AFNetworking'
|
||||||
s.requires_arc = true
|
s.requires_arc = true
|
||||||
|
|
||||||
|
|
|
||||||
39
CHANGES
39
CHANGES
|
|
@ -1,3 +1,42 @@
|
||||||
|
= 1.2.1 (2013-04-18)
|
||||||
|
|
||||||
|
* Add `allowsInvalidSSLCertificate` property to `AFURLConnectionOperation` and
|
||||||
|
`AFHTTPClient`, replacing `_AFNETWORKING_ALLOW_INVALID_SSL_CERTIFICATES_` macro
|
||||||
|
(Kevin Harwood)
|
||||||
|
|
||||||
|
* Add SSL pinning mode to example project (Kevin Harwood)
|
||||||
|
|
||||||
|
* Add name to AFNetworking network thread (Peter Steinberger)
|
||||||
|
|
||||||
|
* Change pinned certificates to trust all derived certificates (Oliver
|
||||||
|
Letterer)
|
||||||
|
|
||||||
|
* Fix documentation about SSL pinning (Kevin Harwood, Mattt Thompson)
|
||||||
|
|
||||||
|
* Fix certain enumerated loops to use fast enumeration, resulting in better
|
||||||
|
performance (Oliver Letterer)
|
||||||
|
|
||||||
|
* Fix macro to work correctly under Mac OS X 10.7 and iOS 4 SDK (Paul Melnikow)
|
||||||
|
|
||||||
|
* Fix documentation, removing unsupported `@discussion` tags (Michele Titolo)
|
||||||
|
|
||||||
|
* Fix `SecTrustCreateWithCertificates` expecting an array as first argument
|
||||||
|
(Oliver Letterer)
|
||||||
|
|
||||||
|
* Fix to use `errSecSuccess` instead of `noErr` for Security frameworks
|
||||||
|
OSStatus (Oliver Letterer)
|
||||||
|
|
||||||
|
* Fix `AFImageRequestOperation` to use `[self alloc]` instead of explicit
|
||||||
|
class, which allows for subclassing (James Clarke)
|
||||||
|
|
||||||
|
* Fix for `numberOfFinishedOperations` calculations (Rune Madsen)
|
||||||
|
|
||||||
|
* Fix calculation of data length in `-connection:didReceiveData:`
|
||||||
|
(Jean-Francois Morin)
|
||||||
|
|
||||||
|
* Fix to encode JSON only with UTF-8, following recommendation of
|
||||||
|
`NSJSONSerialiation` (Sebastian Utz)
|
||||||
|
|
||||||
= 1.2.0 (2013-03-24)
|
= 1.2.0 (2013-03-24)
|
||||||
|
|
||||||
* Add `SSLPinningMode` property to `AFHTTPClient` (Oliver Letterer, Kevin
|
* Add `SSLPinningMode` property to `AFHTTPClient` (Oliver Letterer, Kevin
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue