Skip to content

Commit

Permalink
Fix changelog link generation
Browse files Browse the repository at this point in the history
  • Loading branch information
octref committed Aug 4, 2020
1 parent 9bb47d3 commit 61e7b4d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

### 0.26.0
### 0.26.0 | 2020-08-04 | [VSIX](https://marketplace.visualstudio.com/_apis/public/gallery/publishers/octref/vsextensions/vetur/0.26.0/vspackage)

- Load different `eslint-plugin-vue` rulesets depending on workspace vue version. #2015.
- Remove leading empty line in diagnostic errors. #2067.
Expand Down
2 changes: 0 additions & 2 deletions build/vsix-links.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ const fs = require('fs');
const path = require('path');

const CHANGELOG_PATH = path.resolve(__dirname, '../CHANGELOG.md');
const DOCS_CHANGELOG_PATH = path.resolve(__dirname, '../docs/CHANGELOG.md');

const changelog = fs.readFileSync(CHANGELOG_PATH, 'utf-8');

Expand All @@ -19,4 +18,3 @@ const newChangelog = changelog.replace(/### ([0-9.]+) \| ([0-9-]+)\n/g, (match,
});

fs.writeFileSync(CHANGELOG_PATH, newChangelog);
fs.writeFileSync(DOCS_CHANGELOG_PATH, newChangelog);

0 comments on commit 61e7b4d

Please sign in to comment.