From d1e689f6e17cfcf5f398fe89c4d8e4f0845ba256 Mon Sep 17 00:00:00 2001 From: CRBroughton Date: Thu, 11 Apr 2024 18:46:22 +0100 Subject: [PATCH] feat: :bookmark: 2.2.1 - Update documentation --- .changeset/kind-llamas-beam.md | 5 ----- CHANGELOG.md | 15 +++++++++++++++ package.json | 2 +- src/bun/package.json | 2 +- src/libsql/package.json | 2 +- src/sqljs/package.json | 2 +- 6 files changed, 19 insertions(+), 9 deletions(-) delete mode 100644 .changeset/kind-llamas-beam.md diff --git a/.changeset/kind-llamas-beam.md b/.changeset/kind-llamas-beam.md deleted file mode 100644 index a0069d5..0000000 --- a/.changeset/kind-llamas-beam.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@crbroughton/sibyl": patch ---- - -update README.md files with correct information diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e20681..285a07f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # @crbroughton/sibyl +## 2.2.1 + +### Patch Changes + +- 63b74c4: update README.md files with correct information + +## 2.2.0 + +### Minor Changes + +- 890ee0c: varchar type now supports size key:value +- d87af46: entries are now NOT NULL by default; The nullable option can now only be set to true +- 348db96: add the primary type - this type can be used, which will allow you to omit the nullable, primary and unique key:values +- 0060407: Add libSQL support - Sibyl now supports the libSQL implementation of SQLite + ## 2.1.1 - Bump version because of npm diff --git a/package.json b/package.json index 8cf00f1..516b379 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@crbroughton/sibyl", "type": "module", - "version": "2.1.0", + "version": "2.2.1", "description": "A lightweight query builder", "author": "Craig R Broughton", "license": "MIT", diff --git a/src/bun/package.json b/src/bun/package.json index a15bdfc..4fd1007 100644 --- a/src/bun/package.json +++ b/src/bun/package.json @@ -1,7 +1,7 @@ { "name": "@crbroughton/sibyl_bun", "type": "module", - "version": "2.1.2", + "version": "2.2.1", "description": "A lightweight query builder for Bun", "author": "Craig R Broughton", "license": "MIT", diff --git a/src/libsql/package.json b/src/libsql/package.json index 640406c..2f16eb6 100644 --- a/src/libsql/package.json +++ b/src/libsql/package.json @@ -1,7 +1,7 @@ { "name": "@crbroughton/sibyl_libsql", "type": "module", - "version": "2.1.2", + "version": "2.2.1", "description": "A lightweight query builder for libsql", "author": "Craig R Broughton", "license": "MIT", diff --git a/src/sqljs/package.json b/src/sqljs/package.json index 6bd5e3d..469b4a4 100644 --- a/src/sqljs/package.json +++ b/src/sqljs/package.json @@ -1,7 +1,7 @@ { "name": "@crbroughton/sibyl", "type": "module", - "version": "2.1.2", + "version": "2.2.1", "description": "A lightweight query builder for sql.js", "author": "Craig R Broughton", "license": "MIT",