Skip to content
This repository has been archived by the owner on Jan 17, 2023. It is now read-only.

Commit

Permalink
Bumping version to 2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mattt committed Nov 17, 2014
1 parent 169ef04 commit 8ccc3f6
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 2 deletions.
4 changes: 2 additions & 2 deletions AFNetworking.podspec
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Pod::Spec.new do |s|
s.name = 'AFNetworking'
s.version = '2.4.1'
s.version = '2.5.0'
s.license = 'MIT'
s.summary = 'A delightful iOS and OS X networking framework.'
s.homepage = 'https://github.com/AFNetworking/AFNetworking'
s.social_media_url = 'https://twitter.com/AFNetworking'
s.authors = { 'Mattt Thompson' => 'm@mattt.me' }
s.source = { :git => 'https://github.com/AFNetworking/AFNetworking.git', :tag => "2.4.1", :submodules => true }
s.source = { :git => 'https://github.com/AFNetworking/AFNetworking.git', :tag => "2.5.0", :submodules => true }
s.requires_arc = true

s.ios.deployment_target = '6.0'
Expand Down
55 changes: 55 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,58 @@
= 2.5.0 (2014-11-17)

* Add documentation for expected background session manager usage (Aaron
Brager)

* Add missing documentation for `AFJSONRequestSerializer` and
`AFPropertyListSerializer` (Mattt Thompson)

* Add tests for requesting HTTPS endpoints (Mattt Thompson)

* Add `init` method declarations of `AFURLResponseSerialization` classes for
Swift compatibility (Allen Rohner)

* Change default User-Agent to use the version number instead of the build
number (Tim Watson)

* Change `validatesDomainName` to readonly property (Mattt Thompson, Brian
King)

* Fix checks when observing `AFHTTPRequestSerializerObservedKeyPaths` (Jacek
Suliga)

* Fix crash caused by attempting to set nil `NSURLResponse -URL` as key for
`userInfo` dictionary (Elvis Nuñez)

* Fix crash for multipart streaming requests in XPC services (Mattt Thompson)

* Fix minor aspects of response serializer documentation (Mattt Thompson)

* Fix potential race condition for `AFURLConnectionOperation -description`

* Fix widespread crash related to key-value observing of `NSURLSessionTask
-state` (Phil Tang)

* Fix `UIButton` category associated object keys (Kristian Bauer, Mattt
Thompson)

* Remove `charset` parameter from Content-Type HTTP header field values for
`AFJSONRequestSerializer` and `AFPropertyListSerializer` (Mattt Thompson)

* Update CocoaDocs color scheme (@Orta)

* Update Podfile to explicitly define sources (Kyle Fuller)

* Update to relay `downloadFileURL` to the delegate if the manager picks a
`fileURL` (Brian King)

* Update `AFSSLPinningModeNone` to not validate domain name (Brian King)

* Update `UIButton` category to cache images in `sharedImageCache` (John
Bushnell)

* Update `UIRefreshControl` category to set control state to current state
of request (Elvis Nuñez)

= 2.4.1 (2014-09-04)

* Fix compiler warning generated on 32-bit architectures (John C. Daub)
Expand Down

0 comments on commit 8ccc3f6

Please sign in to comment.