Skip to content

Commit

Permalink
Added release notes to the CHANGELOG and bumped the version to 3.5.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
cnoon committed Sep 8, 2016
1 parent 91149f5 commit bc197a6
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Alamofire.podspec
Original file line number Diff line number Diff line change
@@ -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'
Expand Down
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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).
Expand Down
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
```

Expand All @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion Source/Info-tvOS.plist
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion Source/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit bc197a6

Please sign in to comment.