From 944eb1d2518add934f5e53f67a016a115452918c Mon Sep 17 00:00:00 2001 From: Mitch Treece Date: Tue, 19 Sep 2023 13:29:31 -0700 Subject: [PATCH] Updated README & Espresso --- .../xcshareddata/swiftpm/Package.resolved | 96 ++++++++++--------- README.md | 6 +- 2 files changed, 52 insertions(+), 50 deletions(-) diff --git a/Demo/Demo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved b/Demo/Demo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved index 785c722..938cf09 100644 --- a/Demo/Demo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ b/Demo/Demo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -1,50 +1,52 @@ { - "pins" : [ - { - "identity" : "combineext", - "kind" : "remoteSourceControl", - "location" : "https://github.com/CombineCommunity/CombineExt", - "state" : { - "revision" : "d7b896fa9ca8b47fa7bcde6b43ef9b70bf8c1f56", - "version" : "1.8.1" + "object": { + "pins": [ + { + "package": "CombineExt", + "repositoryURL": "https://github.com/CombineCommunity/CombineExt", + "state": { + "branch": null, + "revision": "d7b896fa9ca8b47fa7bcde6b43ef9b70bf8c1f56", + "version": "1.8.1" + } + }, + { + "package": "Espresso", + "repositoryURL": "https://github.com/mitchtreece/Espresso", + "state": { + "branch": null, + "revision": "52e42820c14d327cad3cd77940108bc8796292a3", + "version": "3.3.0" + } + }, + { + "package": "Kingfisher", + "repositoryURL": "https://github.com/onevcat/Kingfisher", + "state": { + "branch": null, + "revision": "af4be924ad984cf4d16f4ae4df424e79a443d435", + "version": "7.6.2" + } + }, + { + "package": "PromiseKit", + "repositoryURL": "https://github.com/mxcl/PromiseKit", + "state": { + "branch": null, + "revision": "8a98e31a47854d3180882c8068cc4d9381bf382d", + "version": "6.22.1" + } + }, + { + "package": "SnapKit", + "repositoryURL": "https://github.com/SnapKit/SnapKit", + "state": { + "branch": null, + "revision": "f222cbdf325885926566172f6f5f06af95473158", + "version": "5.6.0" + } } - }, - { - "identity" : "espresso", - "kind" : "remoteSourceControl", - "location" : "https://github.com/mitchtreece/Espresso", - "state" : { - "revision" : "9f318ed45166151e8d88ddd6b5b8f3455df02cef", - "version" : "3.1.0" - } - }, - { - "identity" : "kingfisher", - "kind" : "remoteSourceControl", - "location" : "https://github.com/onevcat/Kingfisher", - "state" : { - "revision" : "af4be924ad984cf4d16f4ae4df424e79a443d435", - "version" : "7.6.2" - } - }, - { - "identity" : "promisekit", - "kind" : "remoteSourceControl", - "location" : "https://github.com/mxcl/PromiseKit", - "state" : { - "revision" : "8a98e31a47854d3180882c8068cc4d9381bf382d", - "version" : "6.22.1" - } - }, - { - "identity" : "snapkit", - "kind" : "remoteSourceControl", - "location" : "https://github.com/SnapKit/SnapKit", - "state" : { - "revision" : "f222cbdf325885926566172f6f5f06af95473158", - "version" : "5.6.0" - } - } - ], - "version" : 2 + ] + }, + "version": 1 } diff --git a/README.md b/README.md index e027c15..7c267d1 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,10 @@
-![Version](https://img.shields.io/badge/Version-1.1.1-AFC8F9.svg?style=for-the-badge&labelColor=5C8EF4) +![Version](https://img.shields.io/badge/Version-1.2.0-AFC8F9.svg?style=for-the-badge&labelColor=5C8EF4) ![iOS](https://img.shields.io/badge/iOS-13+-AFC8F9.svg?style=for-the-badge&labelColor=5C8EF4) ![Swift](https://img.shields.io/badge/Swift-5-AFC8F9.svg?style=for-the-badge&labelColor=5C8EF4) -![Swift](https://img.shields.io/badge/Xcode-14-AFC8F9.svg?style=for-the-badge&labelColor=5C8EF4) +![Swift](https://img.shields.io/badge/Xcode-15-AFC8F9.svg?style=for-the-badge&labelColor=5C8EF4)
@@ -39,7 +39,7 @@ If you're adding Cardboard as a dependency of your own Swift package, just add a .package( name: "Cardboard", url: "https://github.com/mitchtreece/Cardboard", - .upToNextMajor(from: .init(1, 1, 0)) + .upToNextMajor(from: .init(1, 0, 0)) ) ```