Skip to content

Commit

Permalink
Added release notes to the CHANGELOG and bumped the version to 3.4.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
cnoon committed Jun 13, 2016
1 parent d257f83 commit 0f506b1
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 4 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.0'
s.version = '3.4.1'
s.license = 'MIT'
s.summary = 'Elegant HTTP Networking in Swift'
s.homepage = 'https://github.com/Alamofire/Alamofire'
Expand Down
46 changes: 45 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +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.4.x` Releases - [3.4.0](#340)
- `3.4.x` Releases - [3.4.0](#340) | [3.4.1](#341)
- `3.3.x` Releases - [3.3.0](#330) | [3.3.1](#331)
- `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)
Expand All @@ -22,6 +22,50 @@ All notable changes to this project will be documented in this file.

---

## [3.4.1](https://github.com/Alamofire/Alamofire/releases/tag/3.4.1)
Released on 2016-06-12. All issues associated with this milestone can be found using this
[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A3.4.1).

#### Added
- Rdar `26761490` to the list of rdars affecting Alamofire.
- Added by [Christian Noon](https://github.com/cnoon) in Pull Request
[#1262](https://github.com/Alamofire/Alamofire/pull/1262).
- A new `debugDescription` test for a MultipartFormData Request with duplicate headers.
- Added by [Christian Noon](https://github.com/cnoon) in Regards to Issue
[#1303](https://github.com/Alamofire/Alamofire/issues/1303).

#### Updated
- CocoaPod installation instructions in README to be compatible with 1.x.
- Updated by [Luis Ferro](https://github.com/lferro9000) in Pull Request
[#1288](https://github.com/Alamofire/Alamofire/pull/1288).
- The README to reflect the best error practices in response serializers.
- Updated by [Jon Shier](https://github.com/jshier) in Pull Request
[#1273](https://github.com/Alamofire/Alamofire/pull/1273).
- The generation of the `User-Agent` header to use non-localized sources.
- Updated by [Jon Shier](https://github.com/jshier) in Pull Request
[#1292](https://github.com/Alamofire/Alamofire/pull/1292) in Regards to Issue
[#1269](https://github.com/Alamofire/Alamofire/pull/1269).
- The `Generic Response Object Serialization` section of the README to use protocol extension.
- Updated by [Raphael Oliveira](https://github.com/raphaeloliveira) in Pull Request
[#1257](https://github.com/Alamofire/Alamofire/pull/1257).
- Reachability by removing explicit IPv6 logic since OS handles this automatically.
- Updated by [Christian Noon](https://github.com/cnoon) in Pull Request
[#1308](https://github.com/Alamofire/Alamofire/pull/1308) in Regards to Issue
[#1228](https://github.com/Alamofire/Alamofire/pull/1228).
- Host manager reachability test to use different hostname to improve test reliability.
- Updated by [Christian Noon](https://github.com/cnoon) in Pull Request
[#1308](https://github.com/Alamofire/Alamofire/pull/1308).

#### Removed
- `ReleaseTest` configuration and updated Travis-CI yaml file to enable testability directly.
- Removed by [Christian Noon](https://github.com/cnoon).

#### Fixed
- Memory leak in `Timeline` description and debugDescription due to string interpolation.
- Fixed by [Christian Noon](https://github.com/cnoon) in Pull Request
[#1262](https://github.com/Alamofire/Alamofire/issues/1262) in Regards to Issue
[#1232](https://github.com/Alamofire/Alamofire/issues/1232).

## [3.4.0](https://github.com/Alamofire/Alamofire/releases/tag/3.4.0)
Released on 2016-05-08. All issues associated with this milestone can be found using this
[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A3.4.0).
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.0</string>
<string>3.4.1</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.0</string>
<string>3.4.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit 0f506b1

Please sign in to comment.