Browse Source

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

Christian Noon 9 years ago
parent
commit
bc197a65b6
5 changed files with 32 additions and 7 deletions
  1. 1 1
      Alamofire.podspec
  2. 24 0
      CHANGELOG.md
  3. 5 4
      README.md
  4. 1 1
      Source/Info-tvOS.plist
  5. 1 1
      Source/Info.plist

+ 1 - 1
Alamofire.podspec

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

+ 24 - 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.5.x` Releases - [3.5.0](#350)
 - `3.4.x` Releases - [3.4.0](#340) | [3.4.1](#341) | [3.4.2](#342)
 - `3.3.x` Releases - [3.3.0](#330) | [3.3.1](#331)
 - `3.2.x` Releases - [3.2.0](#320) | [3.2.1](#321)
@@ -22,6 +23,29 @@ All notable changes to this project will be documented in this file.
 
 ---
 
+## [3.5.0](https://github.com/Alamofire/Alamofire/releases/tag/3.5.0)
+Released on 2016-09-07. All issues associated with this milestone can be found using this
+[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A3.5.0).
+
+#### Updated
+- The `User-Agent` header generation formatting and also added docs and tests.
+  - Updated by [Jon Shier](https://github.com/jshier) in Pull Request
+  [#1456](https://github.com/Alamofire/Alamofire/pull/1456) in Regards to Issue
+  [#1452](https://github.com/Alamofire/Alamofire/issues/1452).
+- All source, test and example logic as well as project settings to compile against
+  Xcode 7 and 8 against Swift 2.2 or 2.3 respectively.
+  - Updated by [Kevin Harwood](https://github.com/kcharwood), 
+    [Jon Shier](https://github.com/jshier) and 
+    [Christian Noon](https://github.com/cnoon).
+- The Travis CI yaml file to support both Xcode 7.3 and 8 simultaneously.
+  - Updated by [Christian Noon](https://github.com/cnoon).
+
+#### Fixed
+- A TLS evaluation test that could fail with a different error when behind a proxy.
+  - Fixed by [Christian Noon](https://github.com/cnoon).
+
+---
+
 ## [3.4.2](https://github.com/Alamofire/Alamofire/releases/tag/3.4.2)
 Released on 2016-08-28. All issues associated with this milestone can be found using this
 [filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A3.4.2).

+ 5 - 4
README.md

@@ -32,7 +32,8 @@ In order to keep Alamofire focused specifically on core networking implementatio
 ## Requirements
 
 - iOS 8.0+ / Mac OS X 10.9+ / tvOS 9.0+ / watchOS 2.0+
-- Xcode 7.3+
+- Xcode 8.0+
+- Swift 2.2 or 2.3
 
 ## Migration Guides
 
@@ -67,11 +68,11 @@ To integrate Alamofire into your Xcode project using CocoaPods, specify it in yo
 
 ```ruby
 source 'https://github.com/CocoaPods/Specs.git'
-platform :ios, '9.0'
+platform :ios, '10.0'
 use_frameworks!
 
 target '<Your Target Name>' do
-    pod 'Alamofire', '~> 3.4'
+    pod 'Alamofire', '~> 3.5'
 end
 ```
 
@@ -95,7 +96,7 @@ $ brew install carthage
 To integrate Alamofire into your Xcode project using Carthage, specify it in your `Cartfile`:
 
 ```ogdl
-github "Alamofire/Alamofire" ~> 3.4
+github "Alamofire/Alamofire" ~> 3.5
 ```
 
 Run `carthage update` to build the framework and drag the built `Alamofire.framework` into your Xcode project.

+ 1 - 1
Source/Info-tvOS.plist

@@ -15,7 +15,7 @@
 	<key>CFBundlePackageType</key>
 	<string>FMWK</string>
 	<key>CFBundleShortVersionString</key>
-	<string>3.4.2</string>
+	<string>3.5.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.4.2</string>
+	<string>3.5.0</string>
 	<key>CFBundleSignature</key>
 	<string>????</string>
 	<key>CFBundleVersion</key>