Skip to content

Commit

Permalink
Update extension to use major.minor versioning scheme (#73)
Browse files Browse the repository at this point in the history
This change is needed for mozilla-extensions/xpi-manifest#215

In Bug 1793925, Firefox Desktop started to emit warnings when an extension's version doesn't match the format specified in the MDN docs.

To comply with this format, we need to drop the patch version on the add on pipeline web extensions.

The pipeline will now generate versions as major.minor.date.time
  • Loading branch information
gabrielBusta authored Feb 15, 2024
1 parent 5334f1e commit 26b4f5c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dnssec-interference-study",
"version": "4.2.0",
"version": "4.2",
"description": "DNSSEC Interference Study",
"main": "web-ext-config.js",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "DNSSEC Interference Study",
"description": "Mozilla addon that measures rates of DNSSEC interference by middleboxes",
"version": "4.2.0",
"version": "4.2",
"hidden": true,

"applications": {
Expand Down

0 comments on commit 26b4f5c

Please sign in to comment.