bump version to 1.8.6 and update candidate check to exclude 'release' branding
Some checks failed
CI / general (push) Has been cancelled

This commit is contained in:
mr. M 2025-01-04 19:12:12 +01:00
parent eb88a86228
commit ba777e4f01
No known key found for this signature in database
GPG key ID: CBD57A2AEDBDA1FB
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
{
"name": "@zen-browser/surfer",
"version": "1.8.5",
"version": "1.8.6",
"description": "Simplifying building firefox forks!",
"main": "index.js",
"bin": {

View file

@ -17,7 +17,7 @@ const firefoxTargets = JSON.parse(`{
export const shouldUseCandidate = (): boolean => {
const brandingKey = dynamicConfig.get('brand')
return brandingKey !== 'stable' && (config.version.version !== config.version.candidate);
return brandingKey !== 'release' && (config.version.version !== config.version.candidate);
}
export const getFFVersionOrCandidate = () => {