Skip to content

Commit

Permalink
Merge tag '7.90.1' into develop
Browse files Browse the repository at this point in the history
* tag '7.90.1':
  Hotfix 7.90.1 (#2039)
  • Loading branch information
samsymons committed Sep 26, 2023
2 parents 9aeb889 + b847336 commit 56e861d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Configuration/Version.xcconfig
Original file line number Diff line number Diff line change
@@ -1 +1 @@
MARKETING_VERSION = 7.90.0
MARKETING_VERSION = 7.90.1
4 changes: 3 additions & 1 deletion DuckDuckGo/HomeCollectionView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,9 @@ class HomeCollectionView: UICollectionView {
renderers.install(renderer: FavoritesHomeViewSectionRenderer(viewModel: favoritesViewModel))

case .homeMessage:
renderers.install(renderer: HomeMessageViewSectionRenderer(homePageConfiguration: homePageConfiguration))
if #available(iOS 16.0, *) {
renderers.install(renderer: HomeMessageViewSectionRenderer(homePageConfiguration: homePageConfiguration))
}

case .appTrackingProtection:
#if APP_TRACKING_PROTECTION
Expand Down
2 changes: 1 addition & 1 deletion DuckDuckGo/Settings.bundle/Root.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<array>
<dict>
<key>DefaultValue</key>
<string>7.90.0</string>
<string>7.90.1</string>
<key>Key</key>
<string>version</string>
<key>Title</key>
Expand Down

0 comments on commit 56e861d

Please sign in to comment.