Skip to content

Commit 0d62b52

Browse files
committed
0.16.3 release -- fix wasm oom, fix potentially missing functions
fix #423
1 parent a8163d2 commit 0d62b52

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

core/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @vlcn.io/crsqlite
22

3+
## 0.16.3
4+
5+
### Patch Changes
6+
7+
- fix windows breakage, fix wasm oom
8+
39
## 0.16.1
410

511
### Patch Changes

core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vlcn.io/crsqlite",
3-
"version": "0.16.2",
3+
"version": "0.16.3",
44
"description": "CR-SQLite loadable extension",
55
"homepage": "https://vlcn.io",
66
"repository": {

core/rs/core/src/consts.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ pub const TBL_SCHEMA: &'static str = "crsql_master";
1111
// 00_05_01_00
1212
// and, if we ever need it, we can track individual builds of a patch release
1313
// 00_05_01_01
14-
pub const CRSQLITE_VERSION: i32 = 16_01_00;
15-
pub const CRSQLITE_VERSION_STR: &'static str = "0.16.1";
14+
pub const CRSQLITE_VERSION: i32 = 16_03_00;
15+
pub const CRSQLITE_VERSION_STR: &'static str = "0.16.3";
1616
pub const CRSQLITE_VERSION_0_15_0: i32 = 15_00_00;
1717

1818
pub const SITE_ID_LEN: i32 = 16;

0 commit comments

Comments
 (0)