From 32b1c039dd5f7221d29e72ea99a85645aaf77745 Mon Sep 17 00:00:00 2001 From: VCD Date: Fri, 28 Feb 2025 01:12:19 +0800 Subject: [PATCH] Bump version and update changelog for new release --- changelog.md | 18 +++++++++++------- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 14 insertions(+), 10 deletions(-) diff --git a/changelog.md b/changelog.md index 99a3dba..0545167 100644 --- a/changelog.md +++ b/changelog.md @@ -5,8 +5,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this module adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] -### Removed -- Minimum supported Node.js version is now v14. + +## [2.0.0] - 2025-02-28 +### Fixed +- `DELIMITER` command is now handled case insensitively. +### Deprecated +- Minimum supported Node.js version is now v14 to benefit from the nullish coalescing operator. ## [1.2.0] - 2020-05-25 ### Added @@ -15,14 +19,13 @@ and this module adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0. ## [1.1.0] - 2020-04-07 ### Fixed -- `DELIMITER` command with no string follows is now ignored in `.split()` API. - +- `DELIMITER` command with no string following is now ignored in `.split()` API. ### Changed -- `.split()` API is now combining more compatible statements than before. +- `.split()` API now combines more compatible statements than before. ## [1.0.1] - 2020-04-05 ### Changed -- Update README. +- Updated README. ## [1.0.0] - 2020-04-05 ### Added @@ -30,7 +33,8 @@ and this module adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0. -[Unreleased]: https://github.com/VeryCrazyDog/mysql-parser/compare/1.2.0...HEAD +[Unreleased]: https://github.com/VeryCrazyDog/mysql-parser/compare/2.0.0...HEAD +[2.0.0]: https://github.com/VeryCrazyDog/mysql-parser/compare/1.2.0...2.0.0 [1.2.0]: https://github.com/VeryCrazyDog/mysql-parser/compare/1.1.0...1.2.0 [1.1.0]: https://github.com/VeryCrazyDog/mysql-parser/compare/1.0.1...1.1.0 [1.0.1]: https://github.com/VeryCrazyDog/mysql-parser/compare/1.0.0...1.0.1 diff --git a/package-lock.json b/package-lock.json index d7a5cf9..be5801b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@verycrazydog/mysql-parser", - "version": "1.2.0", + "version": "2.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@verycrazydog/mysql-parser", - "version": "1.2.0", + "version": "2.0.0", "license": "MIT", "devDependencies": { "ava": "^4.3.1", diff --git a/package.json b/package.json index 8809f06..7e03a5c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@verycrazydog/mysql-parser", - "version": "1.2.0", + "version": "2.0.0", "description": "Parser for MySQL statements", "engines": { "node": ">= 14",