Skip to content

Commit 98cbb00

Browse files
authored
Prepare 4.2.0 (#441)
* Version to 4.2.0. * Update Jazzy docs.
1 parent 4307047 commit 98cbb00

File tree

96 files changed

+532
-447
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+532
-447
lines changed

AlamofireImage.podspec

Lines changed: 3 additions & 3 deletions
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.1.0'
3+
s.version = '4.2.0'
44
s.license = 'MIT'
55
s.summary = 'AlamofireImage is an image component library for Alamofire'
66
s.homepage = 'https://github.com/Alamofire/AlamofireImage'
@@ -11,11 +11,11 @@ Pod::Spec.new do |s|
1111
s.source = { :git => 'https://github.com/Alamofire/AlamofireImage.git', :tag => s.version }
1212
s.source_files = 'Source/*.swift'
1313

14-
s.swift_versions = ['5.1', '5.2']
14+
s.swift_versions = ['5.1', '5.2', '5.3']
1515
s.ios.deployment_target = '10.0'
1616
s.osx.deployment_target = '10.12'
1717
s.tvos.deployment_target = '10.0'
1818
s.watchos.deployment_target = '3.0'
1919

20-
s.dependency 'Alamofire', '~> 5.1'
20+
s.dependency 'Alamofire', '~> 5.4'
2121
end

AlamofireImage.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2424,7 +2424,7 @@
24242424
INFOPLIST_FILE = Source/Info.plist;
24252425
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
24262426
MACOSX_DEPLOYMENT_TARGET = 10.12;
2427-
MARKETING_VERSION = 4.1.0;
2427+
MARKETING_VERSION = 4.2.0;
24282428
MTL_ENABLE_DEBUG_INFO = YES;
24292429
ONLY_ACTIVE_ARCH = YES;
24302430
PRODUCT_BUNDLE_IDENTIFIER = org.alamofire.AlamofireImage;
@@ -2486,7 +2486,7 @@
24862486
INFOPLIST_FILE = Source/Info.plist;
24872487
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
24882488
MACOSX_DEPLOYMENT_TARGET = 10.12;
2489-
MARKETING_VERSION = 4.1.0;
2489+
MARKETING_VERSION = 4.2.0;
24902490
MTL_ENABLE_DEBUG_INFO = NO;
24912491
PRODUCT_BUNDLE_IDENTIFIER = org.alamofire.AlamofireImage;
24922492
SDKROOT = iphoneos;

CHANGELOG.md

Lines changed: 24 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ 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.2.x` Releases - [4.2.0](#420)
7+
- `4.1.x` Releases - [4.1.0](#410)
68
- `4.0.x` Releases - [4.0.0](#400) | [4.0.1](#401) | [4.0.2](#402) | [4.0.3](#403)
79
- `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)
810

@@ -31,13 +33,31 @@ All notable changes to this project will be documented in this file.
3133

3234
---
3335

36+
## [4.2.0](https://github.com/Alamofire/AlamofireImage/releases/tag/4.2.0)
37+
Released on 2021-04-03. All issues associated with this milestone can be found using this
38+
[filter](https://github.com/Alamofire/AlamofireImage/milestone/41?closed=1).
39+
40+
#### Added
41+
- HEIC, JPEG2000, and WebP to `Accept` headers for relevant platforms.
42+
- Added by [Taylor Paul](https://github.com/taylor-paul) and [Jon Shier](https://github.com/jshier) in Pull Requests [#424](https://github.com/Alamofire/AlamofireImage/pull/424) and [#434](https://github.com/Alamofire/AlamofireImage/pull/434).
43+
44+
#### Updated
45+
- Sort `Accept` headers.
46+
- Updated by [Junichiro Kasuya](https://github.com/jksy) in Pull Request [#429](https://github.com/Alamofire/AlamofireImage/pull/429).
47+
48+
#### Fixed
49+
- Invalid `URL` to file path conversion in `URLCache` creation.
50+
- Fixed by [Klaas](https://github.com/klaas) in Pull Request [#421](https://github.com/Alamofire/AlamofireImage/pull/421).
51+
52+
---
53+
3454
## [4.1.0](https://github.com/Alamofire/AlamofireImage/releases/tag/4.1.0)
3555
Released on 2020-04-05. All issues associated with this milestone can be found using this
3656
[filter](https://github.com/Alamofire/AlamofireImage/milestone/40?closed=1).
3757

3858
#### Updated
3959
- Project to require Swift 5.1.
40-
- Updated by[Jon Shier](https://github.com/jshier) in Pull Request [#413](https://github.com/Alamofire/AlamofireImage/pull/413).
60+
- Updated by [Jon Shier](https://github.com/jshier) in Pull Request [#413](https://github.com/Alamofire/AlamofireImage/pull/413).
4161

4262
---
4363

@@ -49,23 +69,23 @@ Released on 2020-03-07. All issues associated with this milestone can be found u
4969
- Missing `nil` default for `completionHandler` parameter of `download` method.
5070
- Fixed by [Rob Ryan](https://github.com/robertmryan) in Pull Request [#407](https://github.com/Alamofire/AlamofireImage/pull/407).
5171
- Swift Package Manager compatibility with local submodules, for real this time.
52-
- Fixed by[Jon Shier](https://github.com/jshier) in direct commit [35151b1](https://github.com/Alamofire/AlamofireImage/commit/35151b1da85e6c1539a55c8a267850e5fc579def).
72+
- Fixed by [Jon Shier](https://github.com/jshier) in direct commit [35151b1](https://github.com/Alamofire/AlamofireImage/commit/35151b1da85e6c1539a55c8a267850e5fc579def).
5373

5474
## [4.0.2](https://github.com/Alamofire/AlamofireImage/releases/tag/4.0.2)
5575
Released on 2020-02-29. All issues associated with this milestone can be found using this
5676
[filter](https://github.com/Alamofire/AlamofireImage/milestone/38?closed=1).
5777

5878
#### Fixed
5979
- Swift Package Manager compatibility with local submodules.
60-
- Fixed by[Jon Shier](https://github.com/jshier) in Pull Request [#403](https://github.com/Alamofire/AlamofireImage/pull/403).
80+
- Fixed by [Jon Shier](https://github.com/jshier) in Pull Request [#403](https://github.com/Alamofire/AlamofireImage/pull/403).
6181

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

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

7090
## [4.0.0](https://github.com/Alamofire/AlamofireImage/releases/tag/4.0.0)
7191
Released on 2020-02-23. All issues associated with this milestone can be found using this

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2015 Alamofire Software Foundation (http://alamofire.org/)
1+
Copyright (c) 2015-2021 Alamofire Software Foundation (http://alamofire.org/)
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Once you have your Swift package set up, adding AlamofireImage as a dependency i
7373

7474
```swift
7575
dependencies: [
76-
.package(url: "https://github.com/Alamofire/AlamofireImage.git", .upToNextMajor(from: "4.1.0"))
76+
.package(url: "https://github.com/Alamofire/AlamofireImage.git", .upToNextMajor(from: "4.2.0"))
7777
]
7878
```
7979

docs/Classes.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<header class="header">
2222
<p class="header-col header-col--primary">
2323
<a class="header-link" href="index.html">
24-
AlamofireImage Docs
24+
AlamofireImage 4.2.0 Docs
2525
</a>
2626
(77% documented)
2727
</p>
@@ -40,7 +40,7 @@
4040
</p>
4141

4242
<p class="header-col header-col--secondary">
43-
<a class="header-link" href="dash-feed://https%3A%2F%2Falamofire%2Egithub%2Eio%2FAlamofireImage%2Fdocsets%2FAlamofireImage%2Exml">
43+
<a class="header-link" href="dash-feed://https%3A%2F%2Falamofire.github.io%2FAlamofireImage%2Fdocsets%2FAlamofireImage.xml">
4444
<img class="header-icon" src="img/dash.png"/>
4545
Install in Dash
4646
</a>
@@ -347,8 +347,8 @@ <h4>Declaration</h4>
347347
</article>
348348
</div>
349349
<section class="footer">
350-
<p>&copy; 2020 <a class="link" href="http://alamofire.org/" target="_blank" rel="external">Alamofire Software Foundation</a>. All rights reserved. (Last updated: 2020-04-05)</p>
351-
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.13.2</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
350+
<p>&copy; 2021 <a class="link" href="http://alamofire.org/" target="_blank" rel="external">Alamofire Software Foundation</a>. All rights reserved. (Last updated: 2021-04-03)</p>
351+
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.13.6</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
352352
</section>
353353
</body>
354354
</div>

docs/Classes/AutoPurgingImageCache.html

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<header class="header">
2222
<p class="header-col header-col--primary">
2323
<a class="header-link" href="../index.html">
24-
AlamofireImage Docs
24+
AlamofireImage 4.2.0 Docs
2525
</a>
2626
(77% documented)
2727
</p>
@@ -40,7 +40,7 @@
4040
</p>
4141

4242
<p class="header-col header-col--secondary">
43-
<a class="header-link" href="dash-feed://https%3A%2F%2Falamofire%2Egithub%2Eio%2FAlamofireImage%2Fdocsets%2FAlamofireImage%2Exml">
43+
<a class="header-link" href="dash-feed://https%3A%2F%2Falamofire.github.io%2FAlamofireImage%2Fdocsets%2FAlamofireImage.xml">
4444
<img class="header-icon" src="../img/dash.png"/>
4545
Install in Dash
4646
</a>
@@ -209,6 +209,7 @@
209209
<h1>AutoPurgingImageCache</h1>
210210
<div class="declaration">
211211
<div class="language">
212+
212213
<pre class="highlight swift"><code><span class="kd">open</span> <span class="kd">class</span> <span class="kt">AutoPurgingImageCache</span> <span class="p">:</span> <span class="kt"><a href="../Protocols/ImageRequestCache.html">ImageRequestCache</a></span></code></pre>
213214

214215
</div>
@@ -954,8 +955,8 @@ <h4>Return Value</h4>
954955
</article>
955956
</div>
956957
<section class="footer">
957-
<p>&copy; 2020 <a class="link" href="http://alamofire.org/" target="_blank" rel="external">Alamofire Software Foundation</a>. All rights reserved. (Last updated: 2020-04-05)</p>
958-
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.13.2</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
958+
<p>&copy; 2021 <a class="link" href="http://alamofire.org/" target="_blank" rel="external">Alamofire Software Foundation</a>. All rights reserved. (Last updated: 2021-04-03)</p>
959+
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.13.6</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
959960
</section>
960961
</body>
961962
</div>

docs/Classes/ImageDownloader.html

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<header class="header">
2222
<p class="header-col header-col--primary">
2323
<a class="header-link" href="../index.html">
24-
AlamofireImage Docs
24+
AlamofireImage 4.2.0 Docs
2525
</a>
2626
(77% documented)
2727
</p>
@@ -40,7 +40,7 @@
4040
</p>
4141

4242
<p class="header-col header-col--secondary">
43-
<a class="header-link" href="dash-feed://https%3A%2F%2Falamofire%2Egithub%2Eio%2FAlamofireImage%2Fdocsets%2FAlamofireImage%2Exml">
43+
<a class="header-link" href="dash-feed://https%3A%2F%2Falamofire.github.io%2FAlamofireImage%2Fdocsets%2FAlamofireImage.xml">
4444
<img class="header-icon" src="../img/dash.png"/>
4545
Install in Dash
4646
</a>
@@ -209,6 +209,7 @@
209209
<h1>ImageDownloader</h1>
210210
<div class="declaration">
211211
<div class="language">
212+
212213
<pre class="highlight swift"><code><span class="kd">open</span> <span class="kd">class</span> <span class="kt">ImageDownloader</span></code></pre>
213214

214215
</div>
@@ -1194,8 +1195,8 @@ <h4>Parameters</h4>
11941195
</article>
11951196
</div>
11961197
<section class="footer">
1197-
<p>&copy; 2020 <a class="link" href="http://alamofire.org/" target="_blank" rel="external">Alamofire Software Foundation</a>. All rights reserved. (Last updated: 2020-04-05)</p>
1198-
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.13.2</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
1198+
<p>&copy; 2021 <a class="link" href="http://alamofire.org/" target="_blank" rel="external">Alamofire Software Foundation</a>. All rights reserved. (Last updated: 2021-04-03)</p>
1199+
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.13.6</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
11991200
</section>
12001201
</body>
12011202
</div>

docs/Classes/ImageDownloader/DownloadPrioritization.html

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<header class="header">
2222
<p class="header-col header-col--primary">
2323
<a class="header-link" href="../../index.html">
24-
AlamofireImage Docs
24+
AlamofireImage 4.2.0 Docs
2525
</a>
2626
(77% documented)
2727
</p>
@@ -40,7 +40,7 @@
4040
</p>
4141

4242
<p class="header-col header-col--secondary">
43-
<a class="header-link" href="dash-feed://https%3A%2F%2Falamofire%2Egithub%2Eio%2FAlamofireImage%2Fdocsets%2FAlamofireImage%2Exml">
43+
<a class="header-link" href="dash-feed://https%3A%2F%2Falamofire.github.io%2FAlamofireImage%2Fdocsets%2FAlamofireImage.xml">
4444
<img class="header-icon" src="../../img/dash.png"/>
4545
Install in Dash
4646
</a>
@@ -209,6 +209,7 @@
209209
<h1>DownloadPrioritization</h1>
210210
<div class="declaration">
211211
<div class="language">
212+
212213
<pre class="highlight swift"><code><span class="kd">public</span> <span class="kd">enum</span> <span class="kt">DownloadPrioritization</span></code></pre>
213214

214215
</div>
@@ -289,8 +290,8 @@ <h4>Declaration</h4>
289290
</article>
290291
</div>
291292
<section class="footer">
292-
<p>&copy; 2020 <a class="link" href="http://alamofire.org/" target="_blank" rel="external">Alamofire Software Foundation</a>. All rights reserved. (Last updated: 2020-04-05)</p>
293-
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.13.2</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
293+
<p>&copy; 2021 <a class="link" href="http://alamofire.org/" target="_blank" rel="external">Alamofire Software Foundation</a>. All rights reserved. (Last updated: 2021-04-03)</p>
294+
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.13.6</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
294295
</section>
295296
</body>
296297
</div>

docs/Classes/ImageResponseSerializer.html

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<header class="header">
2222
<p class="header-col header-col--primary">
2323
<a class="header-link" href="../index.html">
24-
AlamofireImage Docs
24+
AlamofireImage 4.2.0 Docs
2525
</a>
2626
(77% documented)
2727
</p>
@@ -40,7 +40,7 @@
4040
</p>
4141

4242
<p class="header-col header-col--secondary">
43-
<a class="header-link" href="dash-feed://https%3A%2F%2Falamofire%2Egithub%2Eio%2FAlamofireImage%2Fdocsets%2FAlamofireImage%2Exml">
43+
<a class="header-link" href="dash-feed://https%3A%2F%2Falamofire.github.io%2FAlamofireImage%2Fdocsets%2FAlamofireImage.xml">
4444
<img class="header-icon" src="../img/dash.png"/>
4545
Install in Dash
4646
</a>
@@ -209,6 +209,7 @@
209209
<h1>ImageResponseSerializer</h1>
210210
<div class="declaration">
211211
<div class="language">
212+
212213
<pre class="highlight swift"><code><span class="kd">public</span> <span class="kd">final</span> <span class="kd">class</span> <span class="kt">ImageResponseSerializer</span> <span class="p">:</span> <span class="kt">ResponseSerializer</span></code></pre>
213214

214215
</div>
@@ -567,8 +568,8 @@ <h4>Declaration</h4>
567568
</article>
568569
</div>
569570
<section class="footer">
570-
<p>&copy; 2020 <a class="link" href="http://alamofire.org/" target="_blank" rel="external">Alamofire Software Foundation</a>. All rights reserved. (Last updated: 2020-04-05)</p>
571-
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.13.2</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
571+
<p>&copy; 2021 <a class="link" href="http://alamofire.org/" target="_blank" rel="external">Alamofire Software Foundation</a>. All rights reserved. (Last updated: 2021-04-03)</p>
572+
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.13.6</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
572573
</section>
573574
</body>
574575
</div>

0 commit comments

Comments
 (0)