Skip to content

Commit 7975cc1

Browse files
committed
Bumping version to 2.3.0
1 parent aebaa1a commit 7975cc1

File tree

2 files changed

+72
-2
lines changed

2 files changed

+72
-2
lines changed

AFNetworking.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
Pod::Spec.new do |s|
22
s.name = 'AFNetworking'
3-
s.version = '2.2.4'
3+
s.version = '2.3.0'
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.social_media_url = 'https://twitter.com/AFNetworking'
88
s.authors = { 'Mattt Thompson' => 'm@mattt.me' }
9-
s.source = { :git => 'https://github.com/AFNetworking/AFNetworking.git', :tag => "2.2.4", :submodules => true }
9+
s.source = { :git => 'https://github.com/AFNetworking/AFNetworking.git', :tag => "2.3.0", :submodules => true }
1010
s.requires_arc = true
1111

1212
s.ios.deployment_target = '6.0'

CHANGES

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,73 @@
1+
= 2.3.0 (2014-06-11)
2+
3+
* Add check for `AF_APP_EXTENSIONS` macro to conditionally compile
4+
background method that makes API call unavailable to App Extensions in iOS 8
5+
/ OS X 10.10
6+
7+
* Add further explanation for network reachability in documentation (Steven
8+
Fisher)
9+
10+
* Add notification for initial change from
11+
`AFNetworkReachabilityStatusUnknown` to any other state (Jason Pepas,
12+
Sebastian S.A., Mattt Thompson)
13+
14+
* Add tests for AFNetworkActivityIndicatorManager (Dave Weston, Mattt
15+
Thompson)
16+
17+
* Add tests for AFURLSessionManager task progress (Ullrich Schäfer)
18+
19+
* Add `attemptsToRecreateUploadTasksForBackgroundSessions` property, which
20+
attempts Apple's recommendation of retrying a failed upload task if initial
21+
creation did not succeed (Mattt Thompson)
22+
23+
* Add `completionQueue` and `completionGroup` properties to
24+
`AFHTTPRequestOperationManager` (Robert Ryan)
25+
26+
* Change serialization tests to be split over two different files (Mattt
27+
Thompson)
28+
29+
* Change to make NSURLSession subspec not depend on NSURLConnection subspec
30+
(Mattt Thompson)
31+
32+
* Change to make Serialization subspec not depend on NSURLConnection subspec
33+
(Nolan Waite, Mattt Thompson)
34+
35+
* Change `completionHandler` of
36+
`application:handleEventsForBackgroundURLSession:completion:` to be run on
37+
main thread (Padraig Kennedy)
38+
39+
* Change `UIImageView` category to accept any object conforming to
40+
`AFURLResponseSerialization`, rather than just `AFImageResponseSerializer`
41+
(Romans Karpelcevs)
42+
43+
* Fix calculation and behavior of `NSProgress` (Padraig Kennedy, Ullrich
44+
Schäfer)
45+
46+
* Fix deprecation warning for `backgroundSessionConfiguration:` in iOS 8 /
47+
OS X 10.10 (Mattt Thompson)
48+
49+
* Fix implementation of `copyWithZone:` in serializer subclasses (Chris
50+
Streeter)
51+
52+
* Fix issue in Xcode 6 caused by implicit synthesis of overridden `NSStream`
53+
properties (Clay Bridges, Johan Attali)
54+
55+
* Fix KVO handling for `NSURLSessionTask` on iOS 8 / OS X 10.10 (Mattt
56+
Thompson)
57+
58+
* Fix KVO leak for `NSURLSessionTask` (@Zyphrax)
59+
60+
* Fix potential crash caused by attempting to use non-existent error of
61+
failing requests due to URLs exceeding a certain length (Boris Bügling)
62+
63+
* Fix to check existence of `uploadProgress` block inside a referencing
64+
`dispatch_async` to avoid potential race condition (Kyungkoo Kang)
65+
66+
* Fix `UIImageView` category race conditions (Sunny)
67+
68+
* Remove unnecessary default operation response serializer setters (Mattt
69+
Thompson)
70+
171
= 2.2.4 (2014-05-13)
272

373
* Add NSSecureCoding support to all AFNetworking classes (Kyle Fuller, Mattt

0 commit comments

Comments
 (0)