Skip to content

Commit 8f868c2

Browse files
authored
feat!: prepare README for release 1.0.0
feat!: prepare README for release 1.0.0
2 parents 01a6345 + be2f6cc commit 8f868c2

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</h2>
66

77
<div align="center">
8-
A library for generating Web User Interfaces in a simple, type-safe, and consistent manner.
8+
A library for generating Websites in a simple, type-safe, and consistent manner.
99
<br />
1010
<br />
1111
<a href="https://github.com/maclong9/web-ui/issues/new?assignees=&labels=bug&template=01_BUG_REPORT.md&title=bug%3A+">Report a Bug</a>
@@ -76,11 +76,15 @@ steps:
7676

7777
1. Open your `Package.swift` file.
7878
2. Add the WebUI repository URL to the `dependencies` array.
79+
a. Select `from: "x.x.x"` for the release version.
80+
b. Select `from: "next-x.x.x"` for the pre-release version.
81+
c. Select `branch: "development"` for the most up to date changes.
7982

8083
```swift
8184
dependencies: [
82-
// Add the WebUI package dependency
83-
.package(url: "https://github.com/maclong9/web-ui.git", from: "1.0.0")
85+
.package(url: "https://github.com/maclong9/web-ui.git", from: "1.0.0") // Release Version
86+
.package(url: "https://github.com/maclong9/web-ui.git", from: "next-1.1.0") // Pre-Release Version
87+
.package(url: "https://github.com/maclong9/web-ui.git", branch: "development") // Development Version
8488
],
8589
```
8690

0 commit comments

Comments
 (0)