Skip to content

Commit

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

* Update Jazzy docs.
  • Loading branch information
jshier authored Apr 4, 2021
1 parent 4307047 commit 98cbb00
Show file tree
Hide file tree
Showing 96 changed files with 532 additions and 447 deletions.
6 changes: 3 additions & 3 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 = '4.1.0'
s.version = '4.2.0'
s.license = 'MIT'
s.summary = 'AlamofireImage is an image component library for Alamofire'
s.homepage = 'https://github.com/Alamofire/AlamofireImage'
Expand All @@ -11,11 +11,11 @@ Pod::Spec.new do |s|
s.source = { :git => 'https://github.com/Alamofire/AlamofireImage.git', :tag => s.version }
s.source_files = 'Source/*.swift'

s.swift_versions = ['5.1', '5.2']
s.swift_versions = ['5.1', '5.2', '5.3']
s.ios.deployment_target = '10.0'
s.osx.deployment_target = '10.12'
s.tvos.deployment_target = '10.0'
s.watchos.deployment_target = '3.0'

s.dependency 'Alamofire', '~> 5.1'
s.dependency 'Alamofire', '~> 5.4'
end
4 changes: 2 additions & 2 deletions AlamofireImage.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -2424,7 +2424,7 @@
INFOPLIST_FILE = Source/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
MACOSX_DEPLOYMENT_TARGET = 10.12;
MARKETING_VERSION = 4.1.0;
MARKETING_VERSION = 4.2.0;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
PRODUCT_BUNDLE_IDENTIFIER = org.alamofire.AlamofireImage;
Expand Down Expand Up @@ -2486,7 +2486,7 @@
INFOPLIST_FILE = Source/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
MACOSX_DEPLOYMENT_TARGET = 10.12;
MARKETING_VERSION = 4.1.0;
MARKETING_VERSION = 4.2.0;
MTL_ENABLE_DEBUG_INFO = NO;
PRODUCT_BUNDLE_IDENTIFIER = org.alamofire.AlamofireImage;
SDKROOT = iphoneos;
Expand Down
28 changes: 24 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ All notable changes to this project will be documented in this file.
`AlamofireImage` adheres to [Semantic Versioning](http://semver.org/).

#### 4.x Releases
- `4.2.x` Releases - [4.2.0](#420)
- `4.1.x` Releases - [4.1.0](#410)
- `4.0.x` Releases - [4.0.0](#400) | [4.0.1](#401) | [4.0.2](#402) | [4.0.3](#403)
- `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)

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

---

## [4.2.0](https://github.com/Alamofire/AlamofireImage/releases/tag/4.2.0)
Released on 2021-04-03. All issues associated with this milestone can be found using this
[filter](https://github.com/Alamofire/AlamofireImage/milestone/41?closed=1).

#### Added
- HEIC, JPEG2000, and WebP to `Accept` headers for relevant platforms.
- 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).

#### Updated
- Sort `Accept` headers.
- Updated by [Junichiro Kasuya](https://github.com/jksy) in Pull Request [#429](https://github.com/Alamofire/AlamofireImage/pull/429).

#### Fixed
- Invalid `URL` to file path conversion in `URLCache` creation.
- Fixed by [Klaas](https://github.com/klaas) in Pull Request [#421](https://github.com/Alamofire/AlamofireImage/pull/421).

---

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

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

---

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

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

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

## [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).
- 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
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2015 Alamofire Software Foundation (http://alamofire.org/)
Copyright (c) 2015-2021 Alamofire Software Foundation (http://alamofire.org/)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ Once you have your Swift package set up, adding AlamofireImage as a dependency i

```swift
dependencies: [
.package(url: "https://github.com/Alamofire/AlamofireImage.git", .upToNextMajor(from: "4.1.0"))
.package(url: "https://github.com/Alamofire/AlamofireImage.git", .upToNextMajor(from: "4.2.0"))
]
```

Expand Down
8 changes: 4 additions & 4 deletions docs/Classes.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<header class="header">
<p class="header-col header-col--primary">
<a class="header-link" href="index.html">
AlamofireImage Docs
AlamofireImage 4.2.0 Docs
</a>
(77% documented)
</p>
Expand All @@ -40,7 +40,7 @@
</p>

<p class="header-col header-col--secondary">
<a class="header-link" href="dash-feed://https%3A%2F%2Falamofire%2Egithub%2Eio%2FAlamofireImage%2Fdocsets%2FAlamofireImage%2Exml">
<a class="header-link" href="dash-feed://https%3A%2F%2Falamofire.github.io%2FAlamofireImage%2Fdocsets%2FAlamofireImage.xml">
<img class="header-icon" src="img/dash.png"/>
Install in Dash
</a>
Expand Down Expand Up @@ -347,8 +347,8 @@ <h4>Declaration</h4>
</article>
</div>
<section class="footer">
<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>
<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>
<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>
<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>
</section>
</body>
</div>
Expand Down
9 changes: 5 additions & 4 deletions docs/Classes/AutoPurgingImageCache.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<header class="header">
<p class="header-col header-col--primary">
<a class="header-link" href="../index.html">
AlamofireImage Docs
AlamofireImage 4.2.0 Docs
</a>
(77% documented)
</p>
Expand All @@ -40,7 +40,7 @@
</p>

<p class="header-col header-col--secondary">
<a class="header-link" href="dash-feed://https%3A%2F%2Falamofire%2Egithub%2Eio%2FAlamofireImage%2Fdocsets%2FAlamofireImage%2Exml">
<a class="header-link" href="dash-feed://https%3A%2F%2Falamofire.github.io%2FAlamofireImage%2Fdocsets%2FAlamofireImage.xml">
<img class="header-icon" src="../img/dash.png"/>
Install in Dash
</a>
Expand Down Expand Up @@ -209,6 +209,7 @@
<h1>AutoPurgingImageCache</h1>
<div class="declaration">
<div class="language">

<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>

</div>
Expand Down Expand Up @@ -954,8 +955,8 @@ <h4>Return Value</h4>
</article>
</div>
<section class="footer">
<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>
<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>
<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>
<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>
</section>
</body>
</div>
Expand Down
9 changes: 5 additions & 4 deletions docs/Classes/ImageDownloader.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<header class="header">
<p class="header-col header-col--primary">
<a class="header-link" href="../index.html">
AlamofireImage Docs
AlamofireImage 4.2.0 Docs
</a>
(77% documented)
</p>
Expand All @@ -40,7 +40,7 @@
</p>

<p class="header-col header-col--secondary">
<a class="header-link" href="dash-feed://https%3A%2F%2Falamofire%2Egithub%2Eio%2FAlamofireImage%2Fdocsets%2FAlamofireImage%2Exml">
<a class="header-link" href="dash-feed://https%3A%2F%2Falamofire.github.io%2FAlamofireImage%2Fdocsets%2FAlamofireImage.xml">
<img class="header-icon" src="../img/dash.png"/>
Install in Dash
</a>
Expand Down Expand Up @@ -209,6 +209,7 @@
<h1>ImageDownloader</h1>
<div class="declaration">
<div class="language">

<pre class="highlight swift"><code><span class="kd">open</span> <span class="kd">class</span> <span class="kt">ImageDownloader</span></code></pre>

</div>
Expand Down Expand Up @@ -1194,8 +1195,8 @@ <h4>Parameters</h4>
</article>
</div>
<section class="footer">
<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>
<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>
<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>
<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>
</section>
</body>
</div>
Expand Down
9 changes: 5 additions & 4 deletions docs/Classes/ImageDownloader/DownloadPrioritization.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<header class="header">
<p class="header-col header-col--primary">
<a class="header-link" href="../../index.html">
AlamofireImage Docs
AlamofireImage 4.2.0 Docs
</a>
(77% documented)
</p>
Expand All @@ -40,7 +40,7 @@
</p>

<p class="header-col header-col--secondary">
<a class="header-link" href="dash-feed://https%3A%2F%2Falamofire%2Egithub%2Eio%2FAlamofireImage%2Fdocsets%2FAlamofireImage%2Exml">
<a class="header-link" href="dash-feed://https%3A%2F%2Falamofire.github.io%2FAlamofireImage%2Fdocsets%2FAlamofireImage.xml">
<img class="header-icon" src="../../img/dash.png"/>
Install in Dash
</a>
Expand Down Expand Up @@ -209,6 +209,7 @@
<h1>DownloadPrioritization</h1>
<div class="declaration">
<div class="language">

<pre class="highlight swift"><code><span class="kd">public</span> <span class="kd">enum</span> <span class="kt">DownloadPrioritization</span></code></pre>

</div>
Expand Down Expand Up @@ -289,8 +290,8 @@ <h4>Declaration</h4>
</article>
</div>
<section class="footer">
<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>
<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>
<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>
<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>
</section>
</body>
</div>
Expand Down
9 changes: 5 additions & 4 deletions docs/Classes/ImageResponseSerializer.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<header class="header">
<p class="header-col header-col--primary">
<a class="header-link" href="../index.html">
AlamofireImage Docs
AlamofireImage 4.2.0 Docs
</a>
(77% documented)
</p>
Expand All @@ -40,7 +40,7 @@
</p>

<p class="header-col header-col--secondary">
<a class="header-link" href="dash-feed://https%3A%2F%2Falamofire%2Egithub%2Eio%2FAlamofireImage%2Fdocsets%2FAlamofireImage%2Exml">
<a class="header-link" href="dash-feed://https%3A%2F%2Falamofire.github.io%2FAlamofireImage%2Fdocsets%2FAlamofireImage.xml">
<img class="header-icon" src="../img/dash.png"/>
Install in Dash
</a>
Expand Down Expand Up @@ -209,6 +209,7 @@
<h1>ImageResponseSerializer</h1>
<div class="declaration">
<div class="language">

<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>

</div>
Expand Down Expand Up @@ -567,8 +568,8 @@ <h4>Declaration</h4>
</article>
</div>
<section class="footer">
<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>
<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>
<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>
<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>
</section>
</body>
</div>
Expand Down
9 changes: 5 additions & 4 deletions docs/Classes/RequestReceipt.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<header class="header">
<p class="header-col header-col--primary">
<a class="header-link" href="../index.html">
AlamofireImage Docs
AlamofireImage 4.2.0 Docs
</a>
(77% documented)
</p>
Expand All @@ -40,7 +40,7 @@
</p>

<p class="header-col header-col--secondary">
<a class="header-link" href="dash-feed://https%3A%2F%2Falamofire%2Egithub%2Eio%2FAlamofireImage%2Fdocsets%2FAlamofireImage%2Exml">
<a class="header-link" href="dash-feed://https%3A%2F%2Falamofire.github.io%2FAlamofireImage%2Fdocsets%2FAlamofireImage.xml">
<img class="header-icon" src="../img/dash.png"/>
Install in Dash
</a>
Expand Down Expand Up @@ -209,6 +209,7 @@
<h1>RequestReceipt</h1>
<div class="declaration">
<div class="language">

<pre class="highlight swift"><code><span class="kd">open</span> <span class="kd">class</span> <span class="kt">RequestReceipt</span></code></pre>

</div>
Expand Down Expand Up @@ -287,8 +288,8 @@ <h4>Declaration</h4>
</article>
</div>
<section class="footer">
<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>
<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>
<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>
<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>
</section>
</body>
</div>
Expand Down
8 changes: 4 additions & 4 deletions docs/Enums.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<header class="header">
<p class="header-col header-col--primary">
<a class="header-link" href="index.html">
AlamofireImage Docs
AlamofireImage 4.2.0 Docs
</a>
(77% documented)
</p>
Expand All @@ -40,7 +40,7 @@
</p>

<p class="header-col header-col--secondary">
<a class="header-link" href="dash-feed://https%3A%2F%2Falamofire%2Egithub%2Eio%2FAlamofireImage%2Fdocsets%2FAlamofireImage%2Exml">
<a class="header-link" href="dash-feed://https%3A%2F%2Falamofire.github.io%2FAlamofireImage%2Fdocsets%2FAlamofireImage.xml">
<img class="header-icon" src="img/dash.png"/>
Install in Dash
</a>
Expand Down Expand Up @@ -258,8 +258,8 @@ <h4>Declaration</h4>
</article>
</div>
<section class="footer">
<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>
<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>
<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>
<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>
</section>
</body>
</div>
Expand Down
Loading

0 comments on commit 98cbb00

Please sign in to comment.