diff options
| author | Christoph Schlosser <christoph@linux.com> | 2018-06-26 18:05:29 +0200 |
|---|---|---|
| committer | Christoph Schlosser <christophschlosser@users.noreply.github.com> | 2018-06-26 19:10:30 +0200 |
| commit | e281cee46f5efc972d1ae4c36edcf1eb31763280 (patch) | |
| tree | f1fef09fed7c4fe752e6de52244dbeb2894800df /src | |
| parent | fbda6e3b2b54da6d32a93eda7794d5554f1eacf2 (diff) | |
| download | doxdocgen-e281cee46f5efc972d1ae4c36edcf1eb31763280.tar.gz | |
Release 0.3.20.3.2
Diffstat (limited to 'src')
| -rw-r--r-- | src/extension.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/extension.ts b/src/extension.ts index 73be843..5ac1b01 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -12,8 +12,8 @@ enum ConfigChangedNotificationOptions { } enum Version { - CURRENT = "0.3.1", - PREVIOUS = "0.3.0", + CURRENT = "0.3.2", + PREVIOUS = "0.3.1", KEY = "doxdocgen_version", } @@ -31,6 +31,7 @@ export function activate(context: vscode.ExtensionContext) { context.globalState.update(Version.KEY, Version.CURRENT); } else if (version !== Version.CURRENT) { change = true; + context.globalState.update(Version.KEY, Version.CURRENT); } let notificationHideThenable: Thenable<string>; |