From 4890963030c5291608a1269d6ae32bf3162a9c47 Mon Sep 17 00:00:00 2001 From: Vasily Kuzin Date: Thu, 9 Mar 2023 11:58:22 +0300 Subject: [PATCH 1/2] fix: No comma in `Nuxt SEO` snippets (#38) Add commas to nuxt seo #37 --- snippets/nuxt/nuxt-script.code-snippets | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/snippets/nuxt/nuxt-script.code-snippets b/snippets/nuxt/nuxt-script.code-snippets index 1c2b669..e2c6d18 100644 --- a/snippets/nuxt/nuxt-script.code-snippets +++ b/snippets/nuxt/nuxt-script.code-snippets @@ -31,7 +31,7 @@ "prefix": "nseo", "body": [ "useSeoMeta({", - "\ttitle: ${1:pageTitle}", + "\ttitle: ${1:pageTitle},", "\tdescription: ${2:pageDescription}", "})" ], @@ -50,7 +50,7 @@ "prefix": "nseo-server", "body": [ "useServerSeoMeta({", - "\ttitle: ${1:pageTitle}", + "\ttitle: ${1:pageTitle},", "\tdescription: ${2:pageDescription}", "})" ], From d6888245880d53c663419902de20795f36788bdd Mon Sep 17 00:00:00 2001 From: Vasily Kuzin Date: Thu, 9 Mar 2023 12:00:41 +0300 Subject: [PATCH 2/2] release: Release `v0.3.1` (#39) * Update version in package.json * Update changelog --- CHANGELOG.md | 6 ++++++ package.json | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4316961..9b88ea4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to the "vue3-vscode-snippets" extension will be documented in this file. +## `v0.3.1` + +### Fixed + +* No comma in `Nuxt SEO` snippets by @ExEr7um in + ## `v0.3.0` ### Features diff --git a/package.json b/package.json index c4e86f9..45301c8 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "displayName": "Vue 3 VS Code Snippets", "description": "Vue 3 snippets for VS Code", "icon": "images/vue-logo.png", - "version": "0.3.0", + "version": "0.3.1", "publisher": "exer7um", "repository": { "type": "git",