소스 검색

Added release notes to the CHANGELOG and bumped the version to 3.3.0.

Christian Noon 9 년 전
부모
커밋
bf208d0c6d
4개의 변경된 파일41개의 추가작업 그리고 3개의 파일을 삭제
  1. 1 1
      Alamofire.podspec
  2. 38 0
      CHANGELOG.md
  3. 1 1
      Source/Info-tvOS.plist
  4. 1 1
      Source/Info.plist

+ 1 - 1
Alamofire.podspec

@@ -1,6 +1,6 @@
 Pod::Spec.new do |s|
   s.name = 'Alamofire'
-  s.version = '3.2.1'
+  s.version = '3.3.0'
   s.license = 'MIT'
   s.summary = 'Elegant HTTP Networking in Swift'
   s.homepage = 'https://github.com/Alamofire/Alamofire'

+ 38 - 0
CHANGELOG.md

@@ -3,6 +3,7 @@ All notable changes to this project will be documented in this file.
 `Alamofire` adheres to [Semantic Versioning](http://semver.org/).
 
 #### 3.x Releases
+- `3.3.x` Releases - [3.3.0](#330)
 - `3.2.x` Releases - [3.2.0](#320) | [3.2.1](#321)
 - `3.1.x` Releases - [3.1.0](#310) | [3.1.1](#311) | [3.1.2](#312) | [3.1.3](#313) | [3.1.4](#314) | [3.1.5](#315)
 - `3.0.x` Releases - [3.0.0](#300) | [3.0.1](#301)
@@ -20,6 +21,43 @@ All notable changes to this project will be documented in this file.
 
 ---
 
+## [3.3.0](https://github.com/Alamofire/Alamofire/releases/tag/3.3.0)
+Released on 2016-03-23. All issues associated with this milestone can be found using this
+[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A3.3.0).
+
+#### Added
+- Added override closures for all `SessionDelegate` APIs with completion handlers.
+  - Added by [Christian Noon](https://github.com/cnoon) in Pull Request
+  [#1099](https://github.com/Alamofire/Alamofire/pull/1099).
+
+#### Updated
+- The `User-Agent` header implementation to use more aggresive type-safety checks.
+  - Updated by [Christian Noon](https://github.com/cnoon) in Regards to Issue
+  [#1100](https://github.com/Alamofire/Alamofire/issues/1100).
+- All shared response serializers to accept a custom queue for execution.
+  - Updated by [Luca Torella](https://github.com/lucatorella) in Pull Request
+  [#1112](https://github.com/Alamofire/Alamofire/pull/1112).
+- The network reachability manager to use IPv4 on iOS 8.x and OSX 10.9.x.
+  - Updated by [Christian Noon](https://github.com/cnoon) in Regards to Issue
+  [#1086](https://github.com/Alamofire/Alamofire/issues/1086).
+- All source, test and example code to compile against Swift 2.2.
+  - Updated by [James Barrow](https://github.com/Baza207) and [Dominik Hadl](https://github.com/nickskull) in Pull Requests
+  [#1030](https://github.com/Alamofire/Alamofire/pull/1030) and
+  [#1128](https://github.com/Alamofire/Alamofire/pull/1128).
+- The Travis CI YAML file to use Xcode 7.3 and also updated matrix targets.
+  - Updated by [Christian Noon](https://github.com/cnoon).
+
+#### Fixed
+- Issue in JSON response serialization test case where the wrong serializer was being tested.
+  - Fixed by [Gregory J.H. Rho](https://github.com/topchul) in Pull Request
+  [#1108](https://github.com/Alamofire/Alamofire/pull/1108).
+- Issue where multipart form data encoding was unnecessarily scheduling input and output
+  streams with the current runloop.
+  - Fixed by [Brian King](https://github.com/KingOfBrian) in Pull Request
+  [#1121](https://github.com/Alamofire/Alamofire/pull/1121).
+
+---
+
 ## [3.2.1](https://github.com/Alamofire/Alamofire/releases/tag/3.2.1)
 Released on 2016-02-27. All issues associated with this milestone can be found using this
 [filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A3.2.1).

+ 1 - 1
Source/Info-tvOS.plist

@@ -15,7 +15,7 @@
 	<key>CFBundlePackageType</key>
 	<string>FMWK</string>
 	<key>CFBundleShortVersionString</key>
-	<string>3.2.1</string>
+	<string>3.3.0</string>
 	<key>CFBundleSignature</key>
 	<string>????</string>
 	<key>CFBundleVersion</key>

+ 1 - 1
Source/Info.plist

@@ -15,7 +15,7 @@
 	<key>CFBundlePackageType</key>
 	<string>FMWK</string>
 	<key>CFBundleShortVersionString</key>
-	<string>3.2.1</string>
+	<string>3.3.0</string>
 	<key>CFBundleSignature</key>
 	<string>????</string>
 	<key>CFBundleVersion</key>