Skip to content

Commit 209b473

Browse files
committed
Update README
- Preparing for 0.24.0. - Tweaked sample code. - Fixed checklist.
1 parent 64ae8a3 commit 209b473

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Task {
3939
do {
4040
try await config.authenticate()
4141

42-
let atProto = ATProtoKit(sessionConfiguration: config)
42+
let atProto = try await ATProtoKit(sessionConfiguration: config)
4343
let atProtoBluesky = ATProtoBluesky(atProtoKitInstance: atProto)
4444

4545
let postResult = try await atProtoBluesky.createPostRecord(text: "Hello Bluesky!")
@@ -60,9 +60,9 @@ I believe Bluesky and its accompanying AT Protocol gives the perfect balance bet
6060
- [x] Written with adherence to the Swift API Design Guidelines.
6161
- [ ] Well-written documentation for all of the AT Protocol and Bluesky APIs.
6262
- [x] A RichText helper to parse text into the applicable facets.
63-
- [ ] Easily validate different identifiers.
63+
- [x] Easily validate different identifiers.
6464
- [ ] A powerful Firehose API that retrieves and filters events and records in real-time.
65-
- [x] A logging tool for easy debugging.
65+
- [ ] A logging tool for easy debugging.
6666

6767
> [!NOTE]
6868
> Not all features above have been implemented; however, they will be, soon.
@@ -72,7 +72,7 @@ I believe Bluesky and its accompanying AT Protocol gives the perfect balance bet
7272
You can use the Swift Package Manager to download and import the library into your project:
7373
```swift
7474
dependencies: [
75-
.package(url: "https://github.com/MasterJ93/ATProtoKit.git", from: "0.23.0")
75+
.package(url: "https://github.com/MasterJ93/ATProtoKit.git", from: "0.24.0")
7676
]
7777
```
7878

0 commit comments

Comments
 (0)