From 4f8ea32aa69ec94b2fb5561716a7701aec991ce7 Mon Sep 17 00:00:00 2001 From: James Sumners <321201+jsumners@users.noreply.github.com> Date: Wed, 24 Apr 2024 10:41:03 -0400 Subject: [PATCH] Issue v9 release (#1947) * Issue v9 release * Bumped v8.21.0 Signed-off-by: Matteo Collina * fixup Signed-off-by: Matteo Collina --------- Signed-off-by: Matteo Collina Co-authored-by: Matteo Collina --- .github/workflows/ci.yml | 6 ++---- .github/workflows/package-manager-ci.yml | 6 +++--- docs/lts.md | 7 ++++--- lib/meta.js | 2 +- package.json | 2 +- 5 files changed, 11 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 77bc0be47..0f6ead69d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,10 +42,8 @@ jobs: fail-fast: false matrix: os: [macOS-latest, windows-latest, ubuntu-latest] - node-version: [14, 16, 18, 19, 20, 21] - exclude: - - os: windows-latest - node-version: 14 + node-version: [18, 20, 21] + steps: - name: Check out repo uses: actions/checkout@v4 diff --git a/.github/workflows/package-manager-ci.yml b/.github/workflows/package-manager-ci.yml index a6858e2f4..09304ca12 100644 --- a/.github/workflows/package-manager-ci.yml +++ b/.github/workflows/package-manager-ci.yml @@ -14,7 +14,7 @@ jobs: fail-fast: false matrix: os: [windows-latest, ubuntu-latest] - node-version: [16] + node-version: [20] steps: - uses: actions/checkout@v4 with: @@ -39,7 +39,7 @@ jobs: fail-fast: false matrix: os: [windows-latest, ubuntu-latest] - node-version: [16] + node-version: [20] steps: - uses: actions/checkout@v4 with: @@ -68,7 +68,7 @@ jobs: fail-fast: false matrix: os: [windows-latest, ubuntu-latest] - node-version: [16] + node-version: [20] steps: - uses: actions/checkout@v4 with: diff --git a/docs/lts.md b/docs/lts.md index 115c266a6..a2a351d2e 100644 --- a/docs/lts.md +++ b/docs/lts.md @@ -43,6 +43,7 @@ A "month" is defined as 30 consecutive days. | Version | Release Date | End Of LTS Date | Node.js | | :------ | :----------- | :-------------- | :------------------- | +| 9.x | TBD. | TBD | 18, 20 | | 8.x | 2022-06-01 | TBD | 14, 16, 18 | | 7.x | 2021-10-14 | 2023-06-01 | 12, 14, 16 | | 6.x | 2020-03-07 | 2022-04-14 | 10, 12, 14, 16 | @@ -58,6 +59,6 @@ the YAML workflow labels below: | OS | YAML Workflow Label | Node.js | |---------|------------------------|--------------| -| Linux | `ubuntu-latest` | 14,16,18 | -| Windows | `windows-latest` | 14,16,18 | -| MacOS | `macos-latest` | 14,16,18 | +| Linux | `ubuntu-latest` | 18, 20, 21 | +| Windows | `windows-latest` | 18, 20, 21 | +| MacOS | `macos-latest` | 18, 20, 21 | diff --git a/lib/meta.js b/lib/meta.js index a55693a98..57fc39cd4 100644 --- a/lib/meta.js +++ b/lib/meta.js @@ -1,3 +1,3 @@ 'use strict' -module.exports = { version: '8.21.0' } +module.exports = { version: '9.0.0' } diff --git a/package.json b/package.json index dbbd77558..b1d181d6a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "pino", - "version": "8.21.0", + "version": "9.0.0", "description": "super fast, all natural json logger", "main": "pino.js", "type": "commonjs",