From f00deb3d2a5f029aa5af7dcca94c0506361c971d Mon Sep 17 00:00:00 2001 From: mirivlad Date: Wed, 15 Jul 2026 02:57:11 +0800 Subject: [PATCH] release: prepare browser extension v2.0.5 --- README.md | 2 +- chromium/manifest.json | 2 +- firefox/manifest.json | 2 +- package-lock.json | 4 ++-- package.json | 2 +- scripts/test-firefox-github-release.js | 12 ++++++------ 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index a94aca8..3563808 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ for the same Firefox publishing flow. For an explicit version check, pass the current tag after `--`: ```bash -VERSTAK_BROWSER_ENV=/path/to/.env npm run publish:github -- v2.0.4 +VERSTAK_BROWSER_ENV=/path/to/.env npm run publish:github -- v2.0.5 ``` Release output: diff --git a/chromium/manifest.json b/chromium/manifest.json index f15d73a..a2188af 100644 --- a/chromium/manifest.json +++ b/chromium/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 3, "name": "Verstak Bridge", - "version": "2.0.4", + "version": "2.0.5", "description": "Send pages, selections, links, and files to the local Verstak browser inbox.", "author": "Verstak", "homepage_url": "https://github.com/mirivlad/verstak-browser-extension", diff --git a/firefox/manifest.json b/firefox/manifest.json index e738e6e..d53e31f 100644 --- a/firefox/manifest.json +++ b/firefox/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "Verstak Bridge", - "version": "2.0.4", + "version": "2.0.5", "description": "Send pages, selections, links, and files to the local Verstak browser inbox.", "author": "Verstak", "homepage_url": "https://github.com/mirivlad/verstak-browser-extension", diff --git a/package-lock.json b/package-lock.json index a0ee84f..c337c38 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "verstak-browser-extension", - "version": "2.0.4", + "version": "2.0.5", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "verstak-browser-extension", - "version": "2.0.4", + "version": "2.0.5", "devDependencies": { "web-ext": "^8.3.0" } diff --git a/package.json b/package.json index 8dd403e..b6f6660 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "verstak-browser-extension", - "version": "2.0.4", + "version": "2.0.5", "private": true, "description": "Verstak browser capture extension for Chromium and Firefox", "license": "AGPL-3.0-or-later", diff --git a/scripts/test-firefox-github-release.js b/scripts/test-firefox-github-release.js index 75f8fc7..2943f8c 100644 --- a/scripts/test-firefox-github-release.js +++ b/scripts/test-firefox-github-release.js @@ -6,23 +6,23 @@ const packageManifest = require('../package.json'); const chromiumManifest = require('../chromium/manifest.json'); const firefoxManifest = require('../firefox/manifest.json'); -const version = '2.0.4'; -const asset = 'verstak-firefox-2.0.4.xpi'; +const version = '2.0.5'; +const asset = 'verstak-firefox-2.0.5.xpi'; assert.equal(packageManifest.version, version); assert.equal(chromiumManifest.version, version); assert.equal(firefoxManifest.version, version); -assert.equal(release.releaseTag(version), 'v2.0.4'); +assert.equal(release.releaseTag(version), 'v2.0.5'); assert.equal( release.releaseAssetURL(version, asset), - 'https://github.com/mirivlad/verstak-browser-extension/releases/download/v2.0.4/verstak-firefox-2.0.4.xpi', + 'https://github.com/mirivlad/verstak-browser-extension/releases/download/v2.0.5/verstak-firefox-2.0.5.xpi', ); assert.deepEqual(release.updateManifest('verstak-bridge@verstak.app', version, asset), { addons: { 'verstak-bridge@verstak.app': { updates: [{ - version: '2.0.4', - update_link: 'https://github.com/mirivlad/verstak-browser-extension/releases/download/v2.0.4/verstak-firefox-2.0.4.xpi', + version: '2.0.5', + update_link: 'https://github.com/mirivlad/verstak-browser-extension/releases/download/v2.0.5/verstak-firefox-2.0.5.xpi', }], }, },