Updated changelog + beta release script

This commit is contained in:
Elio Struyf
2021-09-08 10:12:15 +02:00
parent 2e743c896f
commit 496391b048
2 changed files with 8 additions and 1 deletions
+1
View File
@@ -2,6 +2,7 @@
## [3.1.0] - (Upcoming release)
- BETA version available at: [beta.frontmatter.codes](https://beta.frontmatter.codes)
- [#73](https://github.com/estruyf/vscode-front-matter/issues/73): List view option for the dashboard
- [#77](https://github.com/estruyf/vscode-front-matter/issues/77): Dashboard grouping pages functionality integrated
- [#81](https://github.com/estruyf/vscode-front-matter/issues/81): Optimizing the content folders to use a new setting to simplify configuration
+7 -1
View File
@@ -13,4 +13,10 @@ packageJson.homepage = "https://beta.frontmatter.codes";
console.log(packageJson.version);
fs.writeFileSync(path.join(path.resolve('.'), 'package.json'), JSON.stringify(packageJson, null, 2));
fs.writeFileSync(path.join(path.resolve('.'), 'package.json'), JSON.stringify(packageJson, null, 2));
const readme = fs.readFileSync(path.join(path.resolve('.'), 'README.md'), 'utf8');
readme.replace(/frontmatter.codes/g, 'beta.frontmatter.codes');
readme.replace(/frontmatter-teal-128x128.png/g, 'frontmatter-beta.png');
fs.writeFileSync(path.join(path.resolve('.'), 'README.md'), readme);