From 2b6ed4d6dacf50e078e298e36f5b4444f660d3ca Mon Sep 17 00:00:00 2001
From: Daniele Margutti
Date: Sun, 15 Nov 2020 13:02:24 +0100
Subject: [PATCH 1/4] Update README.md
---
README.md | 14 ++++++++++++--
1 file changed, 12 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index 711e9d9..68759f7 100644
--- a/README.md
+++ b/README.md
@@ -38,7 +38,7 @@ If you are using SwiftLocation or any other of my creations please consider the
- [**Become a Sponsor**](https://github.com/sponsors/malcommac)
- [Follow Me](https://github.com/malcommac)
--
+
## Table of Contents
@@ -693,7 +693,17 @@ You should look at it in order to implement your own layout, create dynamically
pod 'ScrollStackController'
```
-It also supports `Swift Package Maneger` aka SPM.
+It also supports `Swift Package Maneger` aka SPM in your `Package.swift`:
+
+```sh
+import PackageDescription
+
+ let package = Package(name: "YourPackage",
+ dependencies: [
+ .Package(url: "https://github.com/malcommac/SwiftLocation.git", majorVersion: 0),
+ ]
+ )
+```
[↑ Back To Top](#index)
From 6622919dc2b45def29c2a4f073cd535dd951975a Mon Sep 17 00:00:00 2001
From: Daniele Margutti
Date: Sun, 15 Nov 2020 13:02:52 +0100
Subject: [PATCH 2/4] Update README.md
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 68759f7..287b473 100644
--- a/README.md
+++ b/README.md
@@ -700,7 +700,7 @@ import PackageDescription
let package = Package(name: "YourPackage",
dependencies: [
- .Package(url: "https://github.com/malcommac/SwiftLocation.git", majorVersion: 0),
+ .Package(url: "https://github.com/malcommac/ScrollStackController.git", majorVersion: 0),
]
)
```
From 8a8b6f19666193321df0cd79b213dd94df7bfef3 Mon Sep 17 00:00:00 2001
From: Daniele Margutti
Date: Sun, 15 Nov 2020 19:06:20 +0100
Subject: [PATCH 3/4] Update README.md
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 287b473..61f57f6 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
-Easy scrollable complex layouts in UIKit
+Easy scrollable layouts in UIKit
Create complex scrollable layout using UIViewControllers or plain UIViews and simplify your code!
From 9ea4ad75f88c77f33a81a2fac5282fe1f88f2819 Mon Sep 17 00:00:00 2001
From: Eytan Schulman
Date: Thu, 1 Apr 2021 20:22:44 +0300
Subject: [PATCH 4/4] Added minimum iOS version to SPM description
---
Package.swift | 1 +
1 file changed, 1 insertion(+)
diff --git a/Package.swift b/Package.swift
index e4536c9..8cc39ee 100644
--- a/Package.swift
+++ b/Package.swift
@@ -5,6 +5,7 @@ import PackageDescription
let package = Package(
name: "ScrollStackController",
+ platforms: [.iOS(.v11)],
products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages.
.library(