diff options
Diffstat (limited to 'src/extension.ts')
| -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>; |