Skip to content

Commit 69f4bc0

Browse files
committed
Add migration guide
1 parent 83763ce commit 69f4bc0

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

Sources/StructuredQueriesCore/Documentation.docc/Articles/MigrationGuides.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,5 @@ these guides contain tips to do so.
1414
1515
## Topics
1616

17+
- <doc:MigratingTo0.18>
1718
- <doc:MigratingTo0.16>
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Migrating to 0.18
2+
3+
StructuredQueries 0.18 migrates existing functionality to a new StructuredQueriesSQLite module.
4+
5+
## Overview
6+
7+
StructuredQueries recently introduced a new module, StructuredQueriesSQLite, to house its
8+
SQLite-specific helpers, and in 0.18 it has migrated many of its existing SQLite helpers into this
9+
module.
10+
11+
If you are using SharingGRDB this migration should be transparent, but if you are using
12+
StructuredQueries directly and need access to these helpers, you must now explicitly import this
13+
helper module:
14+
15+
```diff
16+
import StructuredQueries
17+
+import StructuredQueriesSQLite
18+
```

0 commit comments

Comments
 (0)