diff --git a/core/CHANGELOG.md b/core/CHANGELOG.md index 480c17ee..be1ab8c2 100644 --- a/core/CHANGELOG.md +++ b/core/CHANGELOG.md @@ -1,5 +1,11 @@ # @vlcn.io/crsqlite +## 0.16.3 + +### Patch Changes + +- fix windows breakage, fix wasm oom + ## 0.16.1 ### Patch Changes diff --git a/core/package.json b/core/package.json index 82eb2621..2bb01c4d 100644 --- a/core/package.json +++ b/core/package.json @@ -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": { diff --git a/core/rs/core/src/consts.rs b/core/rs/core/src/consts.rs index 0330d99b..20994528 100644 --- a/core/rs/core/src/consts.rs +++ b/core/rs/core/src/consts.rs @@ -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;