diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a08cc1..cfe2ee6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## [v1.0.1](https://github.com/uphold/debino/releases/tag/v1.0.1) (2024-12-28) +- Fix `pino` version in package.json [\#9](https://github.com/uphold/debino/pull/9) ([satazor](https://github.com/satazor)) + ## [v1.0.0](https://github.com/uphold/debino/releases/tag/v1.0.0) (2024-12-28) - Create root logger only if necessary [\#8](https://github.com/uphold/debino/pull/8) ([satazor](https://github.com/satazor)) diff --git a/package-lock.json b/package-lock.json index 07cf7af..b6c74df 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@uphold/debino", - "version": "1.0.0", + "version": "1.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@uphold/debino", - "version": "1.0.0", + "version": "1.0.1", "license": "MIT", "dependencies": { "pino": "^9.6.0" diff --git a/package.json b/package.json index e38aabc..e4c8e01 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@uphold/debino", - "version": "1.0.0", + "version": "1.0.1", "description": "A logging library that combines the simplicity and convenience of debug with the power of pino", "main": "./src/index.js", "types": "./types/index.d.ts",