Skip to content

Commit

Permalink
Added release notes to the CHANGELOG and bumped the version to 3.1.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
cnoon committed Oct 2, 2016
1 parent 33c6615 commit 56ef515
Show file tree
Hide file tree
Showing 5 changed files with 54 additions and 5 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 = '3.0.0'
s.version = '3.1.0'
s.license = 'MIT'
s.summary = 'AlamofireImage is an image component library for Alamofire'
s.homepage = 'https://github.com/Alamofire/AlamofireImage'
Expand Down
49 changes: 49 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/).

#### 3.x Releases
- `3.1.x` Releases - [3.1.0](#310)
- `3.0.x` Releases - [3.0.0](#300)

#### 2.x Releases
Expand All @@ -21,6 +22,54 @@ All notable changes to this project will be documented in this file.

---

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

#### Added
- New `.swift-version` file to repo and reactivated pod lib lint in Travis file.
- Added by [Christian Noon](https://github.com/cnoon).
- The `OS_ACTIVITY_MODE` environment variable to disable excessive logging.
- Added by [Christian Noon](https://github.com/cnoon).
- The new `CoreImageFilter` protocol and updated `BlurFilter` to conform to it.
- Added by [Florian Morello](https://github.com/arsonik) in Pull Request
[#101](https://github.com/Alamofire/AlamofireImage/pull/101).
- The ability to the `AutoPurgingImageCache` to remove all images matching a URL request.
- Added by [Christian Noon](https://github.com/cnoon) in regards to Issue
[#105](https://github.com/Alamofire/AlamofireImage/issues/105).
- `ImageFilter` support to the `UIButton` extension.
- Added by [gshahbazian](https://github.com/gshahbazian) in Pull Request
[#129](https://github.com/Alamofire/AlamofireImage/pull/129).
- MJPEG support to `DataRequest` extension for streaming images.
- Added by [Robbie Trencheny](https://github.com/robbiet480) in Pull Request
[#185](https://github.com/Alamofire/AlamofireImage/pull/185).
- Stream image test for `DataRequest` extension and updated docstrings.
- Added by [Christian Noon](https://github.com/cnoon).

#### Updated
- The Alamofire submodule to the 4.0.1 release.
- Updated by [Christian Noon](https://github.com/cnoon).
- All cases of OSX to macOS throughout the project.
- Updated by [Justin Jia](https://github.com/JustinJiaDev) in Pull Request
[#181](https://github.com/Alamofire/AlamofireImage/issues/181).
- Project settings by removing duplicate settings for individual targets.
- Updated by [Christian Noon](https://github.com/cnoon).
- Project and podspec so all files are compiled on all platforms.
- Updated by [Christian Noon](https://github.com/cnoon).

#### Fixed
- A typo in `placeholderImage` parameter in several UIButton APIs.
- Fixed by [Christian Noon](https://github.com/cnoon) in regard to Issue
[#180](https://github.com/Alamofire/AlamofireImage/issues/180).
- A `CIGuassianBlur` typo in one of the README code samples.
- Fixed by [Christian Noon](https://github.com/cnoon) in regard to Issue
[#189](https://github.com/Alamofire/AlamofireImage/issues/189).

#### Upgrade Notes
This release contains a non-backwards compatible change that fixes a typo in the `UIButton` extension where `placeholderImage` was misspelled in two APIs. Rather than push a MAJOR version release for a typo that people are generally getting incorrect, we decided to break semver here and fix the typo for everyone. Please note that we always try to follow semver as strictly as possible. However, this seemed like the best option given that users would continue to struggle with the typo throughout the lifespan of the 3.x releases.

---

## [3.0.0](https://github.com/Alamofire/AlamofireImage/releases/tag/3.0.0)
Released on 2016-09-11. All issues associated with this milestone can be found using this
[filter](https://github.com/Alamofire/AlamofireImage/milestone/18?closed=1).
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ platform :ios, '10.0'
use_frameworks!

target '<Your Target Name>' do
pod 'AlamofireImage', '~> 3.0'
pod 'AlamofireImage', '~> 3.1'
end
```

Expand All @@ -88,7 +88,7 @@ $ brew install carthage
To integrate AlamofireImage into your Xcode project using Carthage, specify it in your `Cartfile`:

```ogdl
github "Alamofire/AlamofireImage" ~> 3.0
github "Alamofire/AlamofireImage" ~> 3.1
```

Run `carthage update` to build the framework and drag the built `AlamofireImage.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.0.0</string>
<string>3.1.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.0.0</string>
<string>3.1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit 56ef515

Please sign in to comment.