Skip to content

Commit

Permalink
Update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
alexisakers committed May 14, 2020
1 parent 72210a0 commit 1de57aa
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 5 deletions.
7 changes: 7 additions & 0 deletions .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

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

13 changes: 8 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down
19 changes: 19 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -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"),
]
)

0 comments on commit 1de57aa

Please sign in to comment.