Bumping version to 1.3.1
This commit is contained in:
parent
c3a46b8ac4
commit
60bd422401
2 changed files with 18 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.3.0'
|
s.version = '1.3.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.3.0' }
|
s.source = { :git => 'https://github.com/AFNetworking/AFNetworking.git', :tag => '1.3.1' }
|
||||||
s.source_files = 'AFNetworking'
|
s.source_files = 'AFNetworking'
|
||||||
s.requires_arc = true
|
s.requires_arc = true
|
||||||
|
|
||||||
|
|
|
||||||
16
CHANGES
16
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)
|
= 1.3.0 (2013-06-01)
|
||||||
|
|
||||||
* Change in `AFURLConnectionOperation` `NSURLConnection` authentication
|
* Change in `AFURLConnectionOperation` `NSURLConnection` authentication
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue