diff --git a/CHANGELOG.md b/CHANGELOG.md index eff794b..a8d2e20 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [0.3.1] + +- Fixed various low-level performance issues. + +- Fixed outdated links in README. + + ## [0.3.0] - Added support for custom-value brightness adjustments (@usernamehw). diff --git a/README.md b/README.md index 8f21cc8..faceb0d 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Customize your color theme for VS Code. - [![Version](https://img.shields.io/badge/version-0.3.0-red)]() + [![Version](https://img.shields.io/badge/version-0.3.1-red)]() [![License](https://img.shields.io/badge/license-MIT-blue.svg)]() @@ -55,7 +55,7 @@ The recommended method for installing CodeUI is via the Extension Marketplace, a Alternatively, you can download the VSIX from [releases](https://github.com/ryanraposo/codeui/releases) and install using the terminal with command: ``` -code --install-extension codeui-0.3.0.vsix +code --install-extension codeui-0.3.1.vsix ``` *Note: it may be necessary to reload vscode if installing via the terminal.* diff --git a/package.json b/package.json index 6b74d91..7296d8b 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "license": "SEE LICENSE IN LICENSE.md", "description": "Customize your color theme for VS Code.", "icon": "resources/marketplace/codeui-128.png", - "version": "0.3.0", + "version": "0.3.1", "preview": true, "galleryBanner": { "color": "#18191e", diff --git a/src/extension.ts b/src/extension.ts index f950d5e..4487fa1 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -6,7 +6,7 @@ import * as path from 'path'; import { getConfig } from './configuration'; import { ElementProvider, ViewMode } from './elements'; import { InfoProvider } from './info'; -import { TargetingModeStatusBarItem } from './statusBar'; +import { TargetingModeStatusBarItem } from './statusbar'; let elementProvider: ElementProvider; let infoProvider: InfoProvider;