Skip to content

Commit 215a32e

Browse files
committed
Bumping version to 1.2.1
Updating CHANGES for 1.2.1
1 parent c28434c commit 215a32e

File tree

2 files changed

+41
-2
lines changed

2 files changed

+41
-2
lines changed

AFNetworking.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
Pod::Spec.new do |s|
22
s.name = 'AFNetworking'
3-
s.version = '1.2.0'
3+
s.version = '1.2.1'
44
s.license = 'MIT'
55
s.summary = 'A delightful iOS and OS X networking framework.'
66
s.homepage = 'https://github.com/AFNetworking/AFNetworking'
77
s.authors = { 'Mattt Thompson' => '[email protected]', 'Scott Raymond' => '[email protected]' }
8-
s.source = { :git => 'https://github.com/AFNetworking/AFNetworking.git', :tag => '1.2.0' }
8+
s.source = { :git => 'https://github.com/AFNetworking/AFNetworking.git', :tag => '1.2.1' }
99
s.source_files = 'AFNetworking'
1010
s.requires_arc = true
1111

CHANGES

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,42 @@
1+
= 1.2.1 (2013-04-18)
2+
3+
* Add `allowsInvalidSSLCertificate` property to `AFURLConnectionOperation` and
4+
`AFHTTPClient`, replacing `_AFNETWORKING_ALLOW_INVALID_SSL_CERTIFICATES_` macro
5+
(Kevin Harwood)
6+
7+
* Add SSL pinning mode to example project (Kevin Harwood)
8+
9+
* Add name to AFNetworking network thread (Peter Steinberger)
10+
11+
* Change pinned certificates to trust all derived certificates (Oliver
12+
Letterer)
13+
14+
* Fix documentation about SSL pinning (Kevin Harwood, Mattt Thompson)
15+
16+
* Fix certain enumerated loops to use fast enumeration, resulting in better
17+
performance (Oliver Letterer)
18+
19+
* Fix macro to work correctly under Mac OS X 10.7 and iOS 4 SDK (Paul Melnikow)
20+
21+
* Fix documentation, removing unsupported `@discussion` tags (Michele Titolo)
22+
23+
* Fix `SecTrustCreateWithCertificates` expecting an array as first argument
24+
(Oliver Letterer)
25+
26+
* Fix to use `errSecSuccess` instead of `noErr` for Security frameworks
27+
OSStatus (Oliver Letterer)
28+
29+
* Fix `AFImageRequestOperation` to use `[self alloc]` instead of explicit
30+
class, which allows for subclassing (James Clarke)
31+
32+
* Fix for `numberOfFinishedOperations` calculations (Rune Madsen)
33+
34+
* Fix calculation of data length in `-connection:didReceiveData:`
35+
(Jean-Francois Morin)
36+
37+
* Fix to encode JSON only with UTF-8, following recommendation of
38+
`NSJSONSerialiation` (Sebastian Utz)
39+
140
= 1.2.0 (2013-03-24)
241

342
* Add `SSLPinningMode` property to `AFHTTPClient` (Oliver Letterer, Kevin

0 commit comments

Comments
 (0)