Skip to content

Commit

Permalink
v2.0.0-beta1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
kbuffington committed Jan 7, 2021
1 parent 8a5f27c commit f25e443
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ function makeHttpRequest(type, url, successCB) {
}

// from: https://github.com/substack/semver-compare/issues/1#issuecomment-594765531
// release must be in form of 2.0.0-beta.1, or 2.0.1
// release must be in form of 2.0.0-beta1, or 2.0.1
function isNewerVersion (oldVer, newVer) {
const a = newVer.split('-');
const b = oldVer.split('-');
Expand Down
2 changes: 1 addition & 1 deletion js/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ var pref = new PanelProperties(); // preferences
/** @type {*} */
let settings = {};

const currentVersion = '2.0.0-beta.1';
const currentVersion = '2.0.0-beta1';
let updateAvailable = false;
let updateHyperlink;

Expand Down

0 comments on commit f25e443

Please sign in to comment.