From 6d904b72c7d26c603536f611a355481f74a201c8 Mon Sep 17 00:00:00 2001 From: spnraju Date: Mon, 22 Jul 2019 08:07:01 +0530 Subject: [PATCH] v0.3.7 --- .vscode/changelog.code-snippets | 30 ++++++++++++++++++++++++++++++ CHANGELOG.md | 4 ++++ package.json | 2 +- 3 files changed, 35 insertions(+), 1 deletion(-) create mode 100644 .vscode/changelog.code-snippets diff --git a/.vscode/changelog.code-snippets b/.vscode/changelog.code-snippets new file mode 100644 index 0000000..08aa20b --- /dev/null +++ b/.vscode/changelog.code-snippets @@ -0,0 +1,30 @@ +{ + "changelogdate": { + "prefix": "cldate", + "scope": "markdown", + "body": [ + "## [$1] - 2019-$2-$3 (YYYY-MM-DD)" + ] + }, + "changelogfeature": { + "prefix": "clfeature", + "scope": "markdown", + "body": [ + "### Feature Added:" + ] + }, + "changelogbugfix": { + "prefix": "clbug", + "scope": "markdown", + "body": [ + "### Bugs Fixed:" + ] + }, + "changelogentry": { + "prefix": "clentry", + "scope": "markdown", + "body": [ + "- $1" + ] + } +} \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 0518b9e..16e18dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [0.3.7] - 2019-07-22 (YYYY-MM-DD) +### Bugs Fixed: +- fix table of content links in README.md + ## [0.3.6] - 17-07-2019 (DD-MM-YYYY) ### Patch - improve README.md diff --git a/package.json b/package.json index b6d9dc8..5bdf781 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vscode-nightwatchjs-snippets", - "version": "0.3.6", + "version": "0.3.7", "description": "NightwatchJS code snippets for Visual Studio Code", "displayName": "NightwatchJS snippets", "publisher": "Raju",