From f9e692088edf9211c12a981b28873f77f1ce21dc Mon Sep 17 00:00:00 2001 From: Jens Oliver Meiert Date: Tue, 6 Aug 2024 19:10:33 +0200 Subject: [PATCH 1/3] chore: bump version to 3.3.1 Update the version in package.json and package-lock.json to 3.3.1. This includes internal adjustments for consistency across dependencies. Signed-off-by: Jens Oliver Meiert --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 7653bb1..f659c49 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@j9t/imagemin-guard", - "version": "3.3.0", + "version": "3.3.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@j9t/imagemin-guard", - "version": "3.3.0", + "version": "3.3.1", "license": "Apache-2.0", "dependencies": { "chalk": "^5.3.0", diff --git a/package.json b/package.json index 6d80539..3095db3 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "@j9t/imagemin-guard", "description": "Ensure losslessly compressed JPG, PNG, GIF, WebP, and AVIF images (suitable for manual and automatic compression)", "author": "Jens Oliver Meiert", - "version": "3.3.0", + "version": "3.3.1", "type": "module", "license": "Apache-2.0", "repository": { From 1d3b49a7738a01e0d7b48da98c06905fc6fb9fe8 Mon Sep 17 00:00:00 2001 From: Jens Oliver Meiert Date: Tue, 6 Aug 2024 19:12:15 +0200 Subject: [PATCH 2/3] fix: update branch name in CI workflow Changed the branch name from 'main' to 'master' in the CI configuration file to align with the repository's default branch naming convention. Signed-off-by: Jens Oliver Meiert --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 1c8244b..262f4f0 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -3,7 +3,7 @@ name: Tests on: pull_request: branches: - - main + - master jobs: test: From ec86105c0396308a524fe1de9c1644a70d305cb9 Mon Sep 17 00:00:00 2001 From: Jens Oliver Meiert Date: Tue, 6 Aug 2024 19:13:35 +0200 Subject: [PATCH 3/3] fix(workflow): specify Node.js version in tests workflow Changed the Node.js version specification from "lts" to "lts/*" to ensure more precise version targeting. This adjustment aims to avoid potential compatibility issues with dependency installations. Signed-off-by: Jens Oliver Meiert --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 262f4f0..f98e904 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -14,7 +14,7 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v3 with: - node-version: "lts" + node-version: lts/* - name: Install dependencies run: npm install - name: Run Jest tests