Skip to content

Commit dc4aa4e

Browse files
committed
Update Package.swift platforms minimum, provide license file
1 parent 8c01bdf commit dc4aa4e

File tree

3 files changed

+31
-5
lines changed

3 files changed

+31
-5
lines changed

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2019 WillowTree, LLC
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

Package.swift

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ import PackageDescription
55

66
let package = Package(
77
name: "Bark",
8+
platforms: [
9+
.iOS(.v16),
10+
.tvOS(.v16),
11+
.watchOS(.v5),
12+
.visionOS(.v1),
13+
],
814
products: [
915
// Products define the executables and libraries a package produces, making them visible to other packages.
1016
.library(

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ Simple message broadcasting library (similar to NotificationCenter in spirit). I
44
Tree bark won't bark. But `bark` will, and it will allow you to broadcast information across your app in a structured concurrent way.
55

66
## Why Bark
7-
With `bark`, you can register subscriptions that require a concurrency context, and be assured at the point of use that the subscription was
8-
run when the `await` to the associated post completes.
7+
With `bark`, you can register subscriptions that require a concurrency context, and be assured at the point of use that the subscription was run when the `await` to the associated post completes.
98

109
This allows you to reason about the order in which tasks associated with subscriptions execute. Making it easier to write testable and understandable code.
1110

@@ -20,7 +19,7 @@ Bark is available through the Swift Package Manager. To install it, simply add t
2019

2120
```swift
2221
dependencies: [
23-
.package(url: "https://github.com/willowtreeapps/bark.git", from: "1.0.0")
22+
.package(url: "https://github.com/willowtreeapps/bark.git", from: "1.0.1")
2423
]
2524
```
2625

@@ -56,7 +55,7 @@ func testPostsOfASingleSubscription() async throws {
5655
Contributions are immensely appreciated. Feel free to submit pull requests or to create issues to discuss any potential bugs or improvements.
5756

5857
## Author
59-
Grove was created by @rafcabezas at [WillowTree, Inc](https://willowtreeapps.com).
58+
Bark was created by @rafcabezas at [WillowTree, Inc](https://willowtreeapps.com).
6059

6160
## License
62-
Grove is available under the [MIT license](https://opensource.org/licenses/MIT).
61+
Bark is available under the [MIT license](LICENSE).

0 commit comments

Comments
 (0)