diff --git a/CHANGELOG.md b/CHANGELOG.md index b6f4784..8105a18 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [5.0.1] - 2024-04-30 +### Changed +- Updated `engines` in `package.json` to reflect correct support (Node >=14) + ## [5.0.0] - 2024-04-29 ### MAJOR CHANGES - 🛑 5.0.0 drops support for Node 10 and 12 diff --git a/README.md b/README.md index f4adb63..b0e6f0d 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,9 @@ Generate and translate standard UUIDs into shorter - or just *different* - formats and back. -## v5.0.0 + +## v5.0.1 +5.0.1 corrects node support in the `engine` section of `package.json`. ### Major Changes in 5.0.0 - 🛑 5.0.0 drops support for Node 10 and 12. diff --git a/package-lock.json b/package-lock.json index 6c739e6..7010bb2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "short-uuid", - "version": "5.0.0", + "version": "5.0.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "short-uuid", - "version": "5.0.0", + "version": "5.0.1", "license": "MIT", "dependencies": { "any-base": "^1.1.0", diff --git a/package.json b/package.json index 554ff3e..5696526 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "short-uuid", - "version": "5.0.0", + "version": "5.0.1", "description": "Create and translate standard UUIDs with shorter formats.", "main": "index.js", "typings": "index.d.ts", @@ -9,7 +9,7 @@ "test": "npx tape test/**/*.js" }, "engines": { - "node": ">=8" + "node": ">=14" }, "repository": { "type": "git",