From c92061a2252dff918b5a44636287c3b58e1e98bf Mon Sep 17 00:00:00 2001 From: Tibor Bodecs Date: Thu, 5 Feb 2026 12:07:00 +0100 Subject: [PATCH 1/2] fix readme --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1748c5f..6464008 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,11 @@ Then add `FeatherSQLiteDatabase` to your target dependencies: API documentation is available at the link below: -[![DocC API documentation](https://img.shields.io/badge/DocC-API_documentation-F05138)](https://feather-framework.github.io/feather-sqlite-database/) +[ + ![DocC API documentation](https://img.shields.io/badge/DocC-API_documentation-F05138) +]( + https://feather-framework.github.io/feather-sqlite-database/ +) Here is a brief example: @@ -72,7 +76,7 @@ let database = SQLiteDatabaseClient( try await client.run() -try await database.withConnection { connection in +let result = try await database.withConnection { connection in try await connection.run( query: #""" SELECT From c9b325e190229248769d5dcac55175014a8fc6ae Mon Sep 17 00:00:00 2001 From: Tibor Bodecs Date: Thu, 5 Feb 2026 12:08:15 +0100 Subject: [PATCH 2/2] improve readability --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6464008..3609379 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,11 @@ SQLite driver implementation for the abstract [Feather Database](https://github.com/feather-framework/feather-database) Swift API package. -[![Release: 1.0.0-beta.3](https://img.shields.io/badge/Release-1%2E0%2E0--beta%2E3-F05138)](https://github.com/feather-framework/feather-sqlite-database/releases/tag/1.0.0-beta.3) +[ + ![Release: 1.0.0-beta.3](https://img.shields.io/badge/Release-1%2E0%2E0--beta%2E3-F05138) +]( + https://github.com/feather-framework/feather-sqlite-database/releases/tag/1.0.0-beta.3 +) ## Features