Skip to content

Commit

Permalink
0.16.3 release -- fix wasm oom, fix potentially missing functions
Browse files Browse the repository at this point in the history
fix #423
  • Loading branch information
tantaman committed Jan 17, 2024
1 parent a8163d2 commit 0d62b52
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @vlcn.io/crsqlite

## 0.16.3

### Patch Changes

- fix windows breakage, fix wasm oom

## 0.16.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vlcn.io/crsqlite",
"version": "0.16.2",
"version": "0.16.3",
"description": "CR-SQLite loadable extension",
"homepage": "https://vlcn.io",
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions core/rs/core/src/consts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ pub const TBL_SCHEMA: &'static str = "crsql_master";
// 00_05_01_00
// and, if we ever need it, we can track individual builds of a patch release
// 00_05_01_01
pub const CRSQLITE_VERSION: i32 = 16_01_00;
pub const CRSQLITE_VERSION_STR: &'static str = "0.16.1";
pub const CRSQLITE_VERSION: i32 = 16_03_00;
pub const CRSQLITE_VERSION_STR: &'static str = "0.16.3";
pub const CRSQLITE_VERSION_0_15_0: i32 = 15_00_00;

pub const SITE_ID_LEN: i32 = 16;
Expand Down

0 comments on commit 0d62b52

Please sign in to comment.