Skip to content

Commit

Permalink
Update version number for release
Browse files Browse the repository at this point in the history
  • Loading branch information
derekantrican authored Oct 7, 2019
1 parent 53736f5 commit c7f7f63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Code.gs
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ function CheckForUpdate(){
var alreadyAlerted = PropertiesService.getScriptProperties().getProperty("alertedForNewVersion");
if (alreadyAlerted == null){
try{
var thisVersion = 3.0;
var thisVersion = 4.0;
var html = UrlFetchApp.fetch("https://github.com/derekantrican/GAS-ICS-Sync/releases");
var regex = RegExp("<a.*title=\"\\d\\.\\d\">","g");
var latestRelease = regex.exec(html)[0];
Expand All @@ -388,4 +388,4 @@ function CheckForUpdate(){
}
catch(e){}
}
}
}

0 comments on commit c7f7f63

Please sign in to comment.