Skip to content

Commit d1337d4

Browse files
authored
Prepare 4.0.1 (#402)
* Version to 4.0.1. * Update Jazzy docs.
1 parent a21c732 commit d1337d4

File tree

11 files changed

+282
-104
lines changed

11 files changed

+282
-104
lines changed

AlamofireImage.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'AlamofireImage'
3-
s.version = '4.0.0'
3+
s.version = '4.0.1'
44
s.license = 'MIT'
55
s.summary = 'AlamofireImage is an image component library for Alamofire'
66
s.homepage = 'https://github.com/Alamofire/AlamofireImage'

AlamofireImage.xcodeproj/project.pbxproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2393,6 +2393,7 @@
23932393
INFOPLIST_FILE = Source/Info.plist;
23942394
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
23952395
MACOSX_DEPLOYMENT_TARGET = 10.12;
2396+
MARKETING_VERSION = 4.0.1;
23962397
MTL_ENABLE_DEBUG_INFO = YES;
23972398
ONLY_ACTIVE_ARCH = YES;
23982399
PRODUCT_BUNDLE_IDENTIFIER = org.alamofire.AlamofireImage;
@@ -2454,6 +2455,7 @@
24542455
INFOPLIST_FILE = Source/Info.plist;
24552456
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
24562457
MACOSX_DEPLOYMENT_TARGET = 10.12;
2458+
MARKETING_VERSION = 4.0.1;
24572459
MTL_ENABLE_DEBUG_INFO = NO;
24582460
PRODUCT_BUNDLE_IDENTIFIER = org.alamofire.AlamofireImage;
24592461
SDKROOT = iphoneos;

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ All notable changes to this project will be documented in this file.
33
`AlamofireImage` adheres to [Semantic Versioning](http://semver.org/).
44

55
#### 4.x Releases
6-
- `4.0.0` - [4.0.0](#400)
6+
- `4.0.x` Releases - [4.0.0](#400) | [4.0.1](#401)
77
- `4.0.0` Betas - [4.0.0-beta.1](#400-beta1) | [4.0.0-beta.2](#400-beta2) | [4.0.0-beta.3](#400-beta3) | [4.0.0-beta.4](#400-beta4) | [4.0.0-beta.5](#400-beta5) | [4.0.0-beta.6](#400-beta6)
88

99
#### 3.x Releases
@@ -31,6 +31,14 @@ All notable changes to this project will be documented in this file.
3131

3232
---
3333

34+
## [4.0.1](https://github.com/Alamofire/AlamofireImage/releases/tag/4.0.1)
35+
Released on 2020-02-23. All issues associated with this milestone can be found using this
36+
[filter](https://github.com/Alamofire/AlamofireImage/milestone/37?closed=1).
37+
38+
#### Fixed
39+
- Swift 5 compatibility.
40+
- Fixed by[Jon Shier](https://github.com/jshier) in Pull Request [#401](https://github.com/Alamofire/AlamofireImage/pull/401).
41+
3442
## [4.0.0](https://github.com/Alamofire/AlamofireImage/releases/tag/4.0.0)
3543
Released on 2020-02-23. All issues associated with this milestone can be found using this
3644
[filter](https://github.com/Alamofire/AlamofireImage/milestone/23?closed=1).

Package.resolved

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Source/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>4.0.0</string>
18+
<string>$(MARKETING_VERSION)</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

Tests/UIImageTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ class UIImageTestCase: BaseTestCase {
352352
if let blurredImage = blurredImage {
353353
var expectedResource = "unicorn-blurred-8"
354354
if #available(iOS 13.0, macOS 10.15, tvOS 13.0, *) { expectedResource.append("-ios-13") }
355-
let expectedBlurredImage = self.image(forResource: expectedResource, withExtension: "png")
355+
let expectedBlurredImage = image(forResource: expectedResource, withExtension: "png")
356356

357357
let pixelsMatch = blurredImage.af.isEqualToImage(expectedBlurredImage)
358358

docs/docsets/AlamofireImage.docset/Contents/Resources/Documents/badge.svg

Lines changed: 3 additions & 3 deletions
Loading

0 commit comments

Comments
 (0)