Skip to content

Commit

Permalink
Add release notes to the CHANGELOG and bumped the version to 2.2.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
cnoon committed Dec 17, 2015
1 parent 5b9da47 commit f6bfc16
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 3 deletions.
2 changes: 1 addition & 1 deletion AlamofireImage.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AlamofireImage'
s.version = '2.1.1'
s.version = '2.2.0'
s.license = 'MIT'
s.summary = 'AlamofireImage is an image component library for Alamofire'
s.homepage = 'https://github.com/Alamofire/AlamofireImage'
Expand Down
40 changes: 40 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.
`AlamofireImage` adheres to [Semantic Versioning](http://semver.org/).

#### 2.x Releases
- `2.2.x` Releases - [2.2.0](#220)
- `2.1.x` Releases - [2.1.0](#210) | [2.1.1](#211)
- `2.0.x` Releases - [2.0.0](#200)
- `2.0.0` Betas - [2.0.0-beta.1](#200-beta1) | [2.0.0-beta.2](#200-beta2)
Expand All @@ -15,6 +16,45 @@ All notable changes to this project will be documented in this file.

---

## [2.2.0](https://github.com/Alamofire/AlamofireImage/releases/tag/2.2.0)
Released on 2015-12-16. All issues associated with this milestone can be found using this
[filter](https://github.com/Alamofire/AlamofireImage/issues?utf8=✓&q=milestone%3A2.2.0).

#### Added
- Ability for `ImageDownloader` to enqueue multiple image downloads at once.
- Added by [Jeff Kelley](https://github.com/SlaunchaMan) in Pull Request
[#51](https://github.com/Alamofire/AlamofireImage/pull/51).
- Tests to verify image view can cancel and restart the same request.
- Added by [Christian Noon](https://github.com/cnoon) in Regards to Issue
[#55](https://github.com/Alamofire/AlamofireImage/pull/55).
- Precondition to `ImageCache` ensuring memory capacity is GTE preferred usage after purge.
- Added by [Christian Noon](https://github.com/cnoon) in Regards to Issue
[#56](https://github.com/Alamofire/AlamofireImage/pull/56).
- Ability for image transitions to run when image is cached if specified.
- Added by [Jarrod Robins](https://github.com/jarrodrobins) in Pull Request
[#50](https://github.com/Alamofire/AlamofireImage/pull/50).
- Test to verify Accept header is set correctly on `UIImageView` extension.
- Added by [Christian Noon](https://github.com/cnoon) in Regards to Issue
[#60](https://github.com/Alamofire/AlamofireImage/pull/60).
- Added `ReleaseTest` configuration to allow running tests against optimized build.
- Added by [Christian Noon](https://github.com/cnoon).

#### Updated
- Project to disable testability on release and to only build tests on when testing.
- Updated by [Christian Noon](https://github.com/cnoon).
- The Travis-CI configuration to Xcode 7.2, iOS 9.2, tvOS 9.1 and watchOS 2.1.
- Updated by [Christian Noon](https://github.com/cnoon).

#### Fixed
- Issue where image was not downloaded when cancelled and restarted.
- Fixed by [Christian Noon](https://github.com/cnoon) in Regards to Issue
[#55](https://github.com/Alamofire/AlamofireImage/pull/55).
- Issue where `af_setImageWithURL` was not using acceptable content types.
- Fixed by [Branden Russell](https://github.com/brandenr) in Pull Request
[#61](https://github.com/Alamofire/AlamofireImage/pull/61).

---

## [2.1.1](https://github.com/Alamofire/AlamofireImage/releases/tag/2.1.1)
Released on 2015-11-22. All issues associated with this milestone can be found using this
[filter](https://github.com/Alamofire/AlamofireImage/issues?utf8=✓&q=milestone%3A2.1.1).
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>2.1.1</string>
<string>2.2.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>2.1.1</string>
<string>2.2.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit f6bfc16

Please sign in to comment.