Skip to content

Commit

Permalink
Prepare 4.0.1 (#402)
Browse files Browse the repository at this point in the history
* Version to 4.0.1.

* Update Jazzy docs.
  • Loading branch information
jshier committed Feb 24, 2020
1 parent a21c732 commit d1337d4
Show file tree
Hide file tree
Showing 11 changed files with 282 additions and 104 deletions.
2 changes: 1 addition & 1 deletion AlamofireImage.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AlamofireImage'
s.version = '4.0.0'
s.version = '4.0.1'
s.license = 'MIT'
s.summary = 'AlamofireImage is an image component library for Alamofire'
s.homepage = 'https://github.com/Alamofire/AlamofireImage'
Expand Down
2 changes: 2 additions & 0 deletions AlamofireImage.xcodeproj/project.pbxproj
Expand Up @@ -2393,6 +2393,7 @@
INFOPLIST_FILE = Source/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
MACOSX_DEPLOYMENT_TARGET = 10.12;
MARKETING_VERSION = 4.0.1;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
PRODUCT_BUNDLE_IDENTIFIER = org.alamofire.AlamofireImage;
Expand Down Expand Up @@ -2454,6 +2455,7 @@
INFOPLIST_FILE = Source/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
MACOSX_DEPLOYMENT_TARGET = 10.12;
MARKETING_VERSION = 4.0.1;
MTL_ENABLE_DEBUG_INFO = NO;
PRODUCT_BUNDLE_IDENTIFIER = org.alamofire.AlamofireImage;
SDKROOT = iphoneos;
Expand Down
10 changes: 9 additions & 1 deletion CHANGELOG.md
Expand Up @@ -3,7 +3,7 @@ All notable changes to this project will be documented in this file.
`AlamofireImage` adheres to [Semantic Versioning](http://semver.org/).

#### 4.x Releases
- `4.0.0` - [4.0.0](#400)
- `4.0.x` Releases - [4.0.0](#400) | [4.0.1](#401)
- `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)

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

---

## [4.0.1](https://github.com/Alamofire/AlamofireImage/releases/tag/4.0.1)
Released on 2020-02-23. All issues associated with this milestone can be found using this
[filter](https://github.com/Alamofire/AlamofireImage/milestone/37?closed=1).

#### Fixed
- Swift 5 compatibility.
- Fixed by[Jon Shier](https://github.com/jshier) in Pull Request [#401](https://github.com/Alamofire/AlamofireImage/pull/401).

## [4.0.0](https://github.com/Alamofire/AlamofireImage/releases/tag/4.0.0)
Released on 2020-02-23. All issues associated with this milestone can be found using this
[filter](https://github.com/Alamofire/AlamofireImage/milestone/23?closed=1).
Expand Down
4 changes: 2 additions & 2 deletions Package.resolved
Expand Up @@ -6,8 +6,8 @@
"repositoryURL": "https://github.com/Alamofire/Alamofire.git",
"state": {
"branch": null,
"revision": "cdb2f4a574c3f7ae9ac0b0913058d64ff6fa09ac",
"version": "5.0.1"
"revision": "b02c4ee7f1659090f7ac543c022f922beeb04bc6",
"version": "5.0.2"
}
}
]
Expand Down
2 changes: 1 addition & 1 deletion Source/Info.plist
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>4.0.0</string>
<string>$(MARKETING_VERSION)</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion Tests/UIImageTests.swift
Expand Up @@ -352,7 +352,7 @@ class UIImageTestCase: BaseTestCase {
if let blurredImage = blurredImage {
var expectedResource = "unicorn-blurred-8"
if #available(iOS 13.0, macOS 10.15, tvOS 13.0, *) { expectedResource.append("-ios-13") }
let expectedBlurredImage = self.image(forResource: expectedResource, withExtension: "png")
let expectedBlurredImage = image(forResource: expectedResource, withExtension: "png")

let pixelsMatch = blurredImage.af.isEqualToImage(expectedBlurredImage)

Expand Down
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit d1337d4

Please sign in to comment.