diff --git a/.vscodeignore b/.vscodeignore index 5ad6a75..0253060 100644 --- a/.vscodeignore +++ b/.vscodeignore @@ -1,5 +1,6 @@ .vscode/** .vscode-test/** +.github/** .gitignore example.yaml diff --git a/CHANGELOG.md b/CHANGELOG.md index b17e848..5bbaddd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,11 +6,17 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p ## [Unreleased] +## [0.3.1] - 2024-06-29 + +### Fixed + +- Broken link in CHANGELOG + ## [0.3.0] - 2024-06-28 ### Added -- Support for Power Fx (Issue [#17]) +- Support for Power Fx (Issue [#17](https://github.com/harrydowning/yaml-embedded-languages/issues/17)) ## [0.2.0] - 2023-07-29 @@ -47,7 +53,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p - Highlighting support for 40 languages in YAML block-scalars -[unreleased]: https://github.com/harrydowning/yaml-embedded-languages/compare/v0.3.0...HEAD +[unreleased]: https://github.com/harrydowning/yaml-embedded-languages/compare/v0.3.1...HEAD +[0.3.1]: https://github.com/harrydowning/yaml-embedded-languages/compare/v0.3.0...v0.3.1 [0.3.0]: https://github.com/harrydowning/yaml-embedded-languages/compare/v0.2.0...v0.3.0 [0.2.0]: https://github.com/harrydowning/yaml-embedded-languages/compare/v0.1.0...v0.2.0 [0.1.0]: https://github.com/harrydowning/yaml-embedded-languages/compare/v0.0.2...v0.1.0 diff --git a/extension.js b/extension.js index cb3297e..4e9c97f 100644 --- a/extension.js +++ b/extension.js @@ -3,7 +3,7 @@ const vscode = devFlag ? null : require("vscode"); const fs = require("fs"); const NAME = "yaml-embedded-languages"; -const VERSION = "0.3.0"; +const VERSION = "0.3.1"; const DISPLAY_NAME = "YAML Embedded Languages"; const INJECTION_PATH = "./syntaxes/injection.json"; const SCOPE_NAME = `${NAME}.injection`; diff --git a/package-lock.json b/package-lock.json index b62fd63..6d2023c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "yaml-embedded-languages", - "version": "0.3.0", + "version": "0.3.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "yaml-embedded-languages", - "version": "0.3.0", + "version": "0.3.1", "license": "MIT", "devDependencies": { "@vscode/vsce": "^2.29.0" diff --git a/package.json b/package.json index c28a013..6d48dfa 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "yaml-embedded-languages", - "version": "0.3.0", + "version": "0.3.1", "displayName": "YAML Embedded Languages", "description": "Support for syntax highlighting within YAML block-scalars.", "icon": "images/icon.png",