Skip to content

Commit

Permalink
Bump version (duckduckgo#806)
Browse files Browse the repository at this point in the history
* Update privacy config
* Bump version
* Use all dots in version (dashes not allowed)
  • Loading branch information
GioSensation authored Aug 13, 2021
1 parent ac9416a commit abf1d62
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion browsers/chrome/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"default_locale": "en",
"version": "2021.8.12-68238",
"version": "2021.8.13.36133",
"icons": {
"16": "img/icon_16.png",
"48": "img/icon_48.png",
Expand Down
2 changes: 1 addition & 1 deletion browsers/firefox/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"strict_min_version": "57.0"
}
},
"version": "2021.8.12-68238",
"version": "2021.8.13.36133",
"description": "Privacy, simplified. Protect your data as you search and browse: tracker blocking, smarter encryption, private search, and more.",
"icons": {
"16": "img/icon_16.png",
Expand Down
2 changes: 1 addition & 1 deletion scripts/bumpVersion.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const fs = require('fs')
const time = new Date();

const seconds = (time.getUTCHours() * 60 * 60) + (time.getUTCMinutes() * 60) + time.getUTCSeconds();
const newVersion = `${time.getUTCFullYear()}.${time.getUTCMonth()+1}.${time.getUTCDate()}-${seconds}`
const newVersion = `${time.getUTCFullYear()}.${time.getUTCMonth()+1}.${time.getUTCDate()}.${seconds}`

for (let browser of ['chrome', 'firefox']) {
const manifest = fs.readFileSync(`browsers/${browser}/manifest.json`, 'utf8')
Expand Down

0 comments on commit abf1d62

Please sign in to comment.