Skip to content

Commit

Permalink
Added release notes to the CHANGELOG and bumped the version to 2.5.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
cnoon committed Sep 8, 2016
1 parent 7ee31aa commit 23fd14a
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 9 deletions.
4 changes: 2 additions & 2 deletions 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.4.1'
s.version = '2.5.0'
s.license = 'MIT'
s.summary = 'AlamofireImage is an image component library for Alamofire'
s.homepage = 'https://github.com/Alamofire/AlamofireImage'
Expand All @@ -24,5 +24,5 @@ Pod::Spec.new do |s|
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'

s.dependency 'Alamofire', '~> 3.3'
s.dependency 'Alamofire', '~> 3.5'
end
32 changes: 32 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.5.x` Releases - [2.5.0](#250)
- `2.4.x` Releases - [2.4.0](#240) | [2.4.1](#241)
- `2.3.x` Releases - [2.3.0](#230) | [2.3.1](#231)
- `2.2.x` Releases - [2.2.0](#220)
Expand All @@ -18,6 +19,37 @@ All notable changes to this project will be documented in this file.

---

## [2.5.0](https://github.com/Alamofire/AlamofireImage/releases/tag/2.5.0)
Released on 2016-09-08. All issues associated with this milestone can be found using this
[filter](https://github.com/Alamofire/AlamofireImage/milestone/15?closed=1).

#### Added
- Cleanup Whitespace aggregate target and scheme and removed all excess whitespace.
- Added by [Christian Noon](https://github.com/cnoon).

#### Updated
- The source, test and example code along with project settings to support Swift 2.2
and Swift 2.3 simultaneously.
- Updated by [Christian Noon](https://github.com/cnoon).
- Updated the travis yaml file for Swift 2.3 and the new OS target versions.
- Updated by [Christian Noon](https://github.com/cnoon).
- Updated the Cartfile and Alamofire submodule to the 3.5.0 release.
- Updated by [Christian Noon](https://github.com/cnoon).
- Updated Xcode project settings based on Xcode 8 GM recommendations.
- Updated by [Christian Noon](https://github.com/cnoon).
- Code coverage generation is now disabled on framework targets to improve stability.
- Updated by [Christian Noon](https://github.com/cnoon).

#### Fixed
- Issue where image download cancellation error was thrown in incorrect domain.
- Fixed by [Christian Noon](https://github.com/cnoon) in Regards to Issue
[#128](https://github.com/Alamofire/AlamofireImage/issues/128).
- Image download cancellation and restart race condition.
- Fixed by [Christian Noon](https://github.com/cnoon) in Regards to Issue
[#121](https://github.com/Alamofire/AlamofireImage/issues/121).

---

## [2.4.1](https://github.com/Alamofire/AlamofireImage/releases/tag/2.4.1)
Released on 2016-07-18. All issues associated with this milestone can be found using this
[filter](https://github.com/Alamofire/AlamofireImage/milestone/16?closed=1).
Expand Down
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,15 @@ AlamofireImage is an image component library for Alamofire.

- iOS 8.0+ / Mac OS X 10.9+ / tvOS 9.0+ / watchOS 2.0+
- Xcode 7.3+
- Swift 2.2 or 2.3

## Migration Guides

- [AlamofireImage 2.0 Migration Guide](https://github.com/Alamofire/AlamofireImage/blob/master/Documentation/AlamofireImage%202.0%20Migration%20Guide.md)

## Dependencies

- [Alamofire 3.3+](https://github.com/Alamofire/Alamofire)
- [Alamofire 3.5+](https://github.com/Alamofire/Alamofire)

## Communication

Expand All @@ -52,16 +53,16 @@ AlamofireImage is an image component library for Alamofire.
$ gem install cocoapods
```

> CocoaPods 0.39.0+ is required.
> CocoaPods 1.0.0+ is required.
To integrate AlamofireImage into your Xcode project using CocoaPods, specify it in your `Podfile`:

```ruby
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
platform :ios, '10.0'
use_frameworks!

pod 'AlamofireImage', '~> 2.0'
pod 'AlamofireImage', '~> 2.5'
```

Then, run the following command:
Expand All @@ -84,7 +85,7 @@ $ brew install carthage
To integrate AlamofireImage into your Xcode project using Carthage, specify it in your `Cartfile`:

```ogdl
github "Alamofire/AlamofireImage" ~> 2.0
github "Alamofire/AlamofireImage" ~> 2.5
```

---
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.4.1</string>
<string>2.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>2.4.1</string>
<string>2.5.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit 23fd14a

Please sign in to comment.