From c33ac112ff806bf2cc7483a4e722fbd0b824b9f2 Mon Sep 17 00:00:00 2001 From: Nishant Mittal Date: Thu, 26 Aug 2021 23:58:23 +0530 Subject: [PATCH] chore(release): 2.0.0 --- CHANGELOG.md | 16 ++++++++++++++++ package-lock.json | 2 +- package.json | 2 +- src/manifest.json | 2 +- 4 files changed, 19 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f40458..d1ef1dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,22 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [2.0.0](https://github.com/joplin/plugin-templates/compare/v1.1.4...v2.0.0) (2021-08-26) + + +### Features + +* add support for adding labels for custom variables ([b138110](https://github.com/joplin/plugin-templates/commit/b1381101c708b34756b0460bacee8e0bda7024ab)), closes [#30](https://github.com/joplin/plugin-templates/issues/30) +* allow specifying title and tags in templates ([c36dea0](https://github.com/joplin/plugin-templates/commit/c36dea071cb1a4b2e20b79f5114a8b9d10e4bbc1)) +* use `dropdown` instead of `enum` for better user experience ([c009fc9](https://github.com/joplin/plugin-templates/commit/c009fc955703f757c4e9544eece61553af16a433)), closes [#7](https://github.com/joplin/plugin-templates/issues/7) + + +### Bug Fixes + +* auto wrap special variable values in double quotes ([720eea2](https://github.com/joplin/plugin-templates/commit/720eea2fbcdb58921558e9f496e5c0304414ccf4)) +* ignore eslint errors for \S ([dd98f44](https://github.com/joplin/plugin-templates/commit/dd98f44ded164f17d166d1442e7447c15e33b849)) +* **parser:** update the regex used to find special variables ([cb3d677](https://github.com/joplin/plugin-templates/commit/cb3d67738fd5cf3a4bf58f1c3a8d75d5dfccb2d0)) + ### [1.1.4](https://github.com/joplin/plugin-templates/compare/v1.1.3...v1.1.4) (2021-08-16) diff --git a/package-lock.json b/package-lock.json index f7aaf9f..f74031b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "joplin-plugin-templates", - "version": "1.1.4", + "version": "2.0.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index efd25fd..9aa57c3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "joplin-plugin-templates", - "version": "1.1.4", + "version": "2.0.0", "scripts": { "dist": "webpack --joplin-plugin-config buildMain && webpack --joplin-plugin-config buildExtraScripts && webpack --joplin-plugin-config createArchive", "prepare": "npm run dist", diff --git a/src/manifest.json b/src/manifest.json index 53ff8f1..d8b847b 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 1, "id": "joplin.plugin.templates", "app_min_version": "2.2.5", - "version": "1.1.4", + "version": "2.0.0", "name": "Templates", "description": "This plugin allows you to create and use templates in Joplin.", "author": "Nishant Mittal",