Skip to content

Commit

Permalink
Version 4.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
philips77 committed Oct 5, 2021
1 parent e76ee99 commit e23dac0
Show file tree
Hide file tree
Showing 14 changed files with 21 additions and 18 deletions.
4 changes: 2 additions & 2 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- iOSDFULibrary (4.11.0):
- iOSDFULibrary (4.11.1):
- ZIPFoundation (= 0.9.11)
- ZIPFoundation (0.9.11)

Expand All @@ -15,7 +15,7 @@ EXTERNAL SOURCES:
:path: "../"

SPEC CHECKSUMS:
iOSDFULibrary: 65f745d4224ac06625d60b3fc51aad2dec60346a
iOSDFULibrary: 3500ac00451aa7d8ec48a752e91099669a2c1d27
ZIPFoundation: b1f0de4eed33e74a676f76e12559ab6b75990197

PODFILE CHECKSUM: 16697609d795697cac6384a823bc962ccbddb9d0
Expand Down
4 changes: 2 additions & 2 deletions Example/Pods/Local Podspecs/iOSDFULibrary.podspec.json

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

4 changes: 2 additions & 2 deletions Example/Pods/Manifest.lock

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

4 changes: 2 additions & 2 deletions Example/Pods/Pods.xcodeproj/project.pbxproj

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.

2 changes: 1 addition & 1 deletion Example/iOSDFULibrary.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@
isa = PBXProject;
attributes = {
LastSwiftUpdateCheck = 0920;
LastUpgradeCheck = 1250;
LastUpgradeCheck = 1300;
ORGANIZATIONNAME = CocoaPods;
TargetAttributes = {
37E4ADEF2008CA1C005464DD = {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1250"
LastUpgradeVersion = "1300"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,15 @@ if you need to resymbolicate crash logs. you may want to keep those files bundle
**For Swift Package Manager:**

```swift
// swift-tools-version:5.4
// swift-tools-version:5.5
import PackageDescription

let package = Package(
name: "<Your Product Name>",
dependencies: [
.package(
url: "https://github.com/NordicSemiconductor/IOS-DFU-Library",
.upToNextMajor(from: "<Desired Version, e.g. 4.11.0>")
.upToNextMajor(from: "<Desired Version, e.g. 4.11.1>")
)
],
targets: [.target(name: "<Your Target Name>", dependencies: ["NordicDFU"])]
Expand Down
2 changes: 1 addition & 1 deletion README_OBJC.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ end
pod install

- Open the newly created `.xcworkspace` and begin working on your project.
- If Xcode asks to migrate code to Swift 5.2, choose **Later**. (The codebase is Swift 5.2 already)
- If Xcode asks to migrate code to Swift 5.5, choose **Later**. (The codebase is Swift 5.5 already)
- Click on the `Pods` project, then go to the `Build Settings`
- Click on the `iOSDFULibrary` target, then set the `Use Legacy Swift version` setting to `No`
- Repeat the same for the `ZIPFoundation` target.
Expand Down
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
### Changelog
- **4.11.1**
- Improvement: Xcode 13 issue fixed (#455).

- **4.11.0**
- Feature: Support for Abort op code added in Secure DFU (#447).
- Improvement: More op codes added in Secure DFU in SDK 15 (#447).
Expand Down
2 changes: 1 addition & 1 deletion iOSDFULibrary.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "iOSDFULibrary"
s.version = "4.11.0"
s.version = "4.11.1"
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 Down

0 comments on commit e23dac0

Please sign in to comment.