diff --git a/CHANGELOG.md b/CHANGELOG.md index 3781fec..be51bfb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,21 @@ # Changelog +## 0.8.0 +_02 November 2022_ + +**Additions** +- Syntax highlighting for the WinWrap Basic language +- Highlight vba keywords `Eqv`, `Imp`, `TypeOf`, `AddressOf`, `WithEvents`, `Event`, `RaiseEvent`, + `Erase` and `Any` + +**Fixes** +- Highlight `Exit` at line start and after tabs +- Do not highlight as type after a word ending with `As` + +**Docs and Engineering** +- ci: run test job on windows too +- contributing: add small section about issue reporting + + ## 0.7.0 _18 October 2022_ @@ -43,7 +60,7 @@ _12 April 2022_ - Highlighting keywords: `And`, `Case`, `Case Else`, `Currency`, `Date`, `If`, `Is`, `Else`, `ElseIf`, `Empty`, `End If`, `End Select`, `End With`, `False`, `Let`, `Mod`, `Not`, `Null`, `Select Case`, `Then`, `Or`, `ReDim`, `Preserve`, `To`, `True`, `Step`, `ByRef`, `ByVal`, - `Class`, `Exit`, `IIF`, `Get`, `Static`, `Property`, `Like`, `Xor`, `On Error`, `GoTo` + `Class`, `Exit`, `Get`, `Static`, `Property`, `Like`, `Xor`, `On Error`, `GoTo` > Note: not all are covered by syntax tests - Highlight names of function declarations - Highlight date literals diff --git a/package-lock.json b/package-lock.json index 7dc6e9f..39a9094 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "vscode-vba", - "version": "0.8.0-dev", + "version": "0.8.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "vscode-vba", - "version": "0.8.0-dev", + "version": "0.8.0", "license": "MIT", "devDependencies": { "@serkonda7/yaml2json": "^0.8.0", diff --git a/package.json b/package.json index a3e74b0..6ab1372 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "displayName": "VBA", "description": "Visual Basic for Applications and WinWrap Basic support for VS Code.", "icon": "images/icon_256x256.png", - "version": "0.8.0-dev", + "version": "0.8.0", "license": "MIT", "repository": { "type": "git",