Skip to content

Commit

Permalink
fix: broken link in CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
harrydowning committed Jun 29, 2024
1 parent ed32c8e commit b50d67a
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 deletions.
1 change: 1 addition & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.vscode/**
.vscode-test/**
.github/**
.gitignore

example.yaml
Expand Down
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion extension.js
Original file line number Diff line number Diff line change
Expand Up @@ -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`;
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit b50d67a

Please sign in to comment.