diff --git a/CHANGELOG.md b/CHANGELOG.md index 113607e..a650641 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +# 11.1.0 [Usability Updates] + +- Fixed all theme usability issues found in [#46](https://github.com/doki-theme/doki-theme-vscode/issues/46). + # 11.0.0 [Astolfo, Maika, Rias, & Rei] ## 4 New Themes diff --git a/package.json b/package.json index 4f8c936..54a966a 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "displayName": "The Doki Theme", "description": "A bunch of themes with cute anime girls. Code with your waifu!", "publisher": "unthrottled", - "version": "11.0.0", + "version": "11.1.0", "license": "MIT", "icon": "Doki-Theme.png", "galleryBanner": { diff --git a/src/NotificationService.ts b/src/NotificationService.ts index 4d2b51b..b954ac1 100644 --- a/src/NotificationService.ts +++ b/src/NotificationService.ts @@ -3,7 +3,7 @@ import { VSCodeGlobals } from "./VSCodeGlobals"; import { attemptToGreetUser } from "./WelcomeService"; const SAVED_VERSION = "doki.theme.version"; -const DOKI_THEME_VERSION = "v11.0.0"; +const DOKI_THEME_VERSION = "v11.1.0"; export function attemptToNotifyUpdates(context: vscode.ExtensionContext) { const savedVersion = VSCodeGlobals.globalState.get(SAVED_VERSION);