diff --git a/CHANGELOG.md b/CHANGELOG.md index d6c00c5..33d3f51 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [4.4.2](https://github.com/scriptcoded/sql-highlight/compare/v4.4.1...v4.4.2) (2024-03-10) + + +### Bug Fixes + +* add COMMIT keyword ([b9ccf62](https://github.com/scriptcoded/sql-highlight/commit/b9ccf622c7d486fc950ed34e7a9f2ad6551d6f6a)) + ## [4.4.1](https://github.com/scriptcoded/sql-highlight/compare/v4.4.0...v4.4.1) (2024-03-10) diff --git a/lib/keywords.js b/lib/keywords.js index c429124..d2c7a16 100644 --- a/lib/keywords.js +++ b/lib/keywords.js @@ -14,6 +14,7 @@ module.exports = [ 'CASE', 'CHECK', 'COLUMN', + 'COMMIT', 'CONSTRAINT', 'CREATE', 'CREATE DATABASE', diff --git a/package-lock.json b/package-lock.json index e0de8c6..add6694 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "sql-highlight", - "version": "4.4.1", + "version": "4.4.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "sql-highlight", - "version": "4.4.1", + "version": "4.4.2", "funding": [ "https://github.com/scriptcoded/sql-highlight?sponsor=1", { diff --git a/package.json b/package.json index 33daaff..26c8854 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sql-highlight", - "version": "4.4.1", + "version": "4.4.2", "description": "A simple and lightweight library for highlighting SQL queries written in pure JavaScript", "main": "lib/index.js", "types": "./lib/index.d.ts",