Skip to content

Commit e655980

Browse files
committed
Release 3.44.1
1 parent 400358a commit e655980

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ const error = (...args) => console.error(...args);
7171
const { dbId } = response;
7272
log(
7373
'OPFS is available, created persisted database at',
74-
response.result.filename.replace(/^file:(.*?)\?vfs=opfs/, '$1'),
74+
response.result.filename.replace(/^file:(.*?)\?vfs=opfs$/, '$1'),
7575
);
7676
// Your SQLite code here.
7777
} catch (err) {
@@ -83,6 +83,9 @@ const error = (...args) => console.error(...args);
8383
})();
8484
```
8585

86+
The `promiser` object above implements the
87+
[Worker1 API](https://sqlite.org/wasm/doc/trunk/api-worker1.md#worker1-methods).
88+
8689
### In a worker (with OPFS if available):
8790

8891
> **Warning**
@@ -132,6 +135,9 @@ sqlite3InitModule({
132135
});
133136
```
134137

138+
The `db` object above implements the
139+
[Object Oriented API #1](https://sqlite.org/wasm/doc/trunk/api-oo1.md).
140+
135141
### In the main thread (without OPFS):
136142

137143
```js

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sqlite.org/sqlite-wasm",
3-
"version": "3.44.0-build5",
3+
"version": "3.44.1-build1",
44
"description": "SQLite Wasm conveniently wrapped as an ES Module.",
55
"keywords": [
66
"sqlite",

0 commit comments

Comments
 (0)