From 690bc6b27dbf3b879d8d26f5d380af580d96bb40 Mon Sep 17 00:00:00 2001 From: Space_Fox <44732812+emanuelfranklyn@users.noreply.github.com> Date: Thu, 27 Jun 2024 00:36:03 -0300 Subject: [PATCH] (chore): prepare release MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Lobo Metalúrgico <43734867+LoboMetalurgico@users.noreply.github.com> --- CHANGELOG.md | 9 +++++++-- package.json | 2 +- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7fbbbce..cfc6ca4 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,9 @@ -# v2.0.0 +# v2.0.0-ALPHA.1: Customize Everything (patch) + - [BACKWARDS COMPATIBILITY] Automatically register the console engine if no engine is provided and you try to log something. + + - [NEW] Strings with highlightable words separated by `/` and `\` will be highlighted. + +# v2.0.0-ALPHA.0: Customize Everything - [BREAKING] Full rewrite of the constructor and the way the logger works, logging methods however remain the same. - [BREAKING] Removed the `fileProperties` parameter from the constructor, use instead new FileStorageEngine class for file logging. @@ -65,7 +70,7 @@ - [NEW] Added support to log objects, arrays and etc. Like the default `console.log` function. - - [BREAKING] Changed the export of AutoLogEnd now importing the package will return the `Logger` class and a object named `AutoLogEnd` with the `activate` and `deactivate` functions. + - [BREAKING] Changed the export of AutoLogEnd. Now, importing the package will return the `Logger` class and a object named `AutoLogEnd` with the `activate` and `deactivate` functions. - [NEW] AutoLogEnd `activate` function now accepts a `Logger` instance as 2º parameter. If not passed it will create a new instance of `Logger` with the default parameters. otherwise it will use the passed instance. diff --git a/package.json b/package.json index 17651fe..ee26a29 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@promisepending/logger.js", - "version": "2.0.0-alpha.0", + "version": "2.0.0-alpha.1", "description": "A better logger", "main": "build/index.js", "types": "src/main/index.ts",