From 1de57aabdcc352287ea08cb4869b73bf74635944 Mon Sep 17 00:00:00 2001 From: Alexis Aubry Date: Thu, 14 May 2020 18:33:28 -0400 Subject: [PATCH] Update CHANGELOG --- .../contents.xcworkspacedata | 7 +++++++ CHANGELOG.md | 13 ++++++++----- Package.swift | 19 +++++++++++++++++++ 3 files changed, 34 insertions(+), 5 deletions(-) create mode 100644 .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata create mode 100644 Package.swift diff --git a/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata b/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..919434a --- /dev/null +++ b/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/CHANGELOG.md b/CHANGELOG.md index 25a7e9c..c22b965 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ # _BulletinBoard_ Changelog ## Unreleased +## 🔖 v4.1.1 +### Changes +- Do not use external resources for close button + +### Fixes +- Fix for iPad split view bug +[#173](https://github.com/alexaubry/BulletinBoard/pull/173) + ## 🔖 v4.1.0 ### New Features - iOS 13 Dark Mode support @@ -12,11 +20,6 @@ - Remove testing dependencies from the Cartfile [#166](https://github.com/alexaubry/BulletinBoard/pull/166) -## Unreleased -### Fixes -- Fix for iPad split view bug -[#173] (https://github.com/alexaubry/BulletinBoard/pull/173) - ## 🔖 v4.0.0 ### Fixes - Upgrade to Swift 5 diff --git a/Package.swift b/Package.swift new file mode 100644 index 0000000..c88b0d2 --- /dev/null +++ b/Package.swift @@ -0,0 +1,19 @@ +// swift-tools-version:5.0 +import PackageDescription + +let package = Package( + name: "BLTNBoard", + products: [ + .library( + name: "BLTNBoard", + targets: ["BLTNBoard"]), + ], + dependencies: [ + ], + targets: [ + .target( + name: "BLTNBoard", + dependencies: [], + path: "Sources"), + ] +)