Skip to content

Commit

Permalink
Added release notes to the CHANGELOG and bumped the version to 2.3.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
cnoon committed Jan 18, 2016
1 parent 2dd861c commit 9e6c677
Show file tree
Hide file tree
Showing 4 changed files with 50 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.2.0'
s.version = '2.3.0'
s.license = 'MIT'
s.summary = 'AlamofireImage is an image component library for Alamofire'
s.homepage = 'https://github.com/Alamofire/AlamofireImage'
Expand Down
47 changes: 47 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.3.x` Releases - [2.3.0](#230)
- `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)
Expand All @@ -16,6 +17,52 @@ All notable changes to this project will be documented in this file.

---

## [2.3.0](https://github.com/Alamofire/AlamofireImage/releases/tag/2.3.0)
Released on 2016-1-17. All issues associated with this milestone can be found using this
[filter](https://github.com/Alamofire/AlamofireImage/issues?utf8=✓&q=milestone%3A2.3.0).

#### Added
- Alpha properties to `UIImage` extension along with unit tests.
- Added by [Christian Noon](https://github.com/cnoon).
- Condition to `UIImageView` test to verify active request receipt is reset.
- Added by [Jorge Mario Orjuela Gutierrez](https://github.com/jorjuela33) in Pull Request
[#62](https://github.com/Alamofire/AlamofireImage/pull/62).
- `UIButton` extension supporting remote image downloads.
- Added by [Jorge Mario Orjuela Gutierrez](https://github.com/jorjuela33) in Pull Request
[#63](https://github.com/Alamofire/AlamofireImage/pull/63).
- Tests verifying `Accept` header is set properly for button image downloads.
- Added by [Christian Noon](https://github.com/cnoon).
- `UIButton` extension tests around cancelling and restarting image downloads.
- Added by [Christian Noon](https://github.com/cnoon).
- iOS 9.2 devices to the travis yaml device matrix.
- Added by [Christian Noon](https://github.com/cnoon).
- `Carthage/Build` ignore flag to the `.gitignore` file to match Alamofire.
- Added by [Lars Anderson](https://github.com/larsacus) in Pull Request
[#71](https://github.com/Alamofire/AlamofireImage/pull/71).
- `Package.swift` file to support Swift Package Manager (SPM).
- Added by [Christian Noon](https://github.com/cnoon).

#### Updated
- `UIImage` scaling now uses `af_isOpaque` property where applicable.
- Updated by [Christian Noon](https://github.com/cnoon) in Regards to Issue
[#65](https://github.com/Alamofire/AlamofireImage/issues/65).
- Refactored `UIButton` extension and tests to more closely follow coding standards.
- Updated by [Christian Noon](https://github.com/cnoon).
- Simplified `UIImageView` tests replacing KVO by overriding the image property.
- Updated by [Christian Noon](https://github.com/cnoon).
- Excluded the `UIButton` extension from osx and watchOS targets in podspec.
- Updated by [Christian Noon](https://github.com/cnoon).
- Copyright headers to include 2016! 🎉🎉🎉
- Updated by [Christian Noon](https://github.com/cnoon).
- The default parameters in `AutoPurgingImageCache` initializer with correct MB values.
- Updated by [Christian Noon](https://github.com/cnoon).
- Several `UIImageView` APIs to public ACL to allow for better reuse.
- Updated by [Christian Noon](https://github.com/cnoon).
- Alamofire submodule to 3.1.5 release.
- Updated by [Christian Noon](https://github.com/cnoon).

---

## [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).
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.2.0</string>
<string>2.3.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.2.0</string>
<string>2.3.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit 9e6c677

Please sign in to comment.