Updating CHANGES for 1.2.1
This commit is contained in:
Mattt Thompson 2013-04-18 07:47:53 +02:00
Родитель c28434ce71
Коммит 215a32e23c
2 изменённых файлов: 41 добавлений и 2 удалений

Просмотреть файл

@ -1,11 +1,11 @@
Pod::Spec.new do |s|
s.name = 'AFNetworking'
s.version = '1.2.0'
s.version = '1.2.1'
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.0' }
s.source = { :git => 'https://github.com/AFNetworking/AFNetworking.git', :tag => '1.2.1' }
s.source_files = 'AFNetworking'
s.requires_arc = true

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)
* Add `SSLPinningMode` property to `AFHTTPClient` (Oliver Letterer, Kevin