Skip to content

Commit

Permalink
Merge pull request #536 from NordicSemiconductor/bugfix/zip-foundation
Browse files Browse the repository at this point in the history
ZipFoundation migrated to 0.9.19 - fixed PrivacyInfo
  • Loading branch information
philips77 authored Apr 18, 2024
2 parents 2361551 + 4afaedb commit 2db0d4f
Show file tree
Hide file tree
Showing 12 changed files with 417 additions and 294 deletions.
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ let package = Package(
.library(name: "NordicDFU", targets: ["NordicDFU"])
],
dependencies: [
.package(url: "https://github.com/weichsel/ZIPFoundation", exact: "0.9.18"),
.package(url: "https://github.com/weichsel/ZIPFoundation", exact: "0.9.19"),
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0"),
],
targets: [
Expand Down
10 changes: 5 additions & 5 deletions Test App/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PODS:
- iOSDFULibrary (4.15.2):
- ZIPFoundation (= 0.9.18)
- ZIPFoundation (0.9.18)
- iOSDFULibrary (4.15.3):
- ZIPFoundation (= 0.9.19)
- ZIPFoundation (0.9.19)

DEPENDENCIES:
- iOSDFULibrary (from `../`)
Expand All @@ -15,8 +15,8 @@ EXTERNAL SOURCES:
:path: "../"

SPEC CHECKSUMS:
iOSDFULibrary: eb5445fd152c41e1141050716c47ac1a2b7ae41c
ZIPFoundation: fa9ae5af13b7cf168245f24d1c672a4fb972e37f
iOSDFULibrary: ef7e1fbb3fc7a5fabd106297a9cd0e775bcfcec6
ZIPFoundation: b8c29ea7ae353b309bc810586181fd073cb3312c

PODFILE CHECKSUM: ae4b20f609dc65f886ce92e7f350ae5ef1fa65ca

Expand Down
6 changes: 3 additions & 3 deletions Test App/Pods/Local Podspecs/iOSDFULibrary.podspec.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Test App/Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

596 changes: 349 additions & 247 deletions Test App/Pods/Pods.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
### Changelog
- **4.15.3**
- Bugfix: Privacy Info fixed in ZipFoundation library (#535).

- **4.15.2**
- Bugfix: Privacy Info fixed (#534).

- **4.15.1**
- Bugfix: Adding missing privacy manifests keys (#533).

Expand Down
4 changes: 2 additions & 2 deletions iOSDFULibrary.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = "iOSDFULibrary"
s.module_name = 'NordicDFU'
s.version = "4.15.2"
s.version = "4.15.3"
s.summary = "This repository contains a library to perform Device Firmware Update on the nRF5x devices."
s.description = <<-DESC
The nRF5x Series chips are flash-based SoCs, and as such they represent the most flexible solution available. A key feature of the nRF5x Series and their associated software architecture and S-Series SoftDevices is the possibility for Over-The-Air Device Firmware Upgrade (OTA-DFU). See Figure 1. OTA-DFU allows firmware upgrades to be issued and downloaded to products in the field via the cloud and so enables OEMs to fix bugs and introduce new features to products that are already out on the market. This brings added security and flexibility to product development when using the nRF5x Series SoCs.
Expand All @@ -25,6 +25,6 @@ The nRF5x Series chips are flash-based SoCs, and as such they represent the most
'NordicDFUPrivacyInfo' => ['Library/Assets/PrivacyInfo.xcprivacy']
}

s.dependency 'ZIPFoundation', '= 0.9.18'
s.dependency 'ZIPFoundation', '= 0.9.19'

end

0 comments on commit 2db0d4f

Please sign in to comment.