From 60bd422401112537fa6d6f008d4843e83f0d35bc Mon Sep 17 00:00:00 2001 From: Mattt Thompson Date: Tue, 18 Jun 2013 09:44:52 -0700 Subject: [PATCH] Bumping version to 1.3.1 --- AFNetworking.podspec | 4 ++-- CHANGES | 16 ++++++++++++++++ 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/AFNetworking.podspec b/AFNetworking.podspec index f8c139d..9866f28 100644 --- a/AFNetworking.podspec +++ b/AFNetworking.podspec @@ -1,11 +1,11 @@ Pod::Spec.new do |s| s.name = 'AFNetworking' - s.version = '1.3.0' + s.version = '1.3.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.3.0' } + s.source = { :git => 'https://github.com/AFNetworking/AFNetworking.git', :tag => '1.3.1' } s.source_files = 'AFNetworking' s.requires_arc = true diff --git a/CHANGES b/CHANGES index 7ea0377..ada386e 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,19 @@ += 1.3.1 (2013-06-18) + + * Add `automaticallyInflatesResponseImage` property to +`AFImageRequestOperation`, which when enabled, offers significant performance +improvements for drawing images loaded through `UIImageView+AFNetworking` by +inflating compressed image data in the background (Mattt Thompson, Peter +Steinberger) + + * Add `NSParameterAssert` check for `nil` `urlRequest` parameter in +`AFURLConnectionOperation` initializer (Kyle Fuller) + + * Fix reachability to detect the case where a connection is required but can +be automatically established (Joshua Vickery) + + * Fix to Test target Podfile (Kyle Fuller) + = 1.3.0 (2013-06-01) * Change in `AFURLConnectionOperation` `NSURLConnection` authentication