diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f4154f..466a784 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## not released +## v1.2.1 (2023-11-19) + - Add: Option to preserve source note title in the combined note text ## v1.2.0 (2023-11-14) diff --git a/package-lock.json b/package-lock.json index 49452a6..6dbfd0b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "joplin-plugin-combine-notes", - "version": "1.2.0", + "version": "1.2.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "joplin-plugin-combine-notes", - "version": "1.2.0", + "version": "1.2.1", "license": "MIT", "dependencies": { "i18n": "^0.15.1", diff --git a/package.json b/package.json index e64be21..c41d66f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "joplin-plugin-combine-notes", - "version": "1.2.0", + "version": "1.2.1", "scripts": { "prepare": "npm run dist && husky install", "dist": "webpack --env joplin-plugin-config=buildMain && webpack --env joplin-plugin-config=buildExtraScripts && webpack --env joplin-plugin-config=createArchive", diff --git a/src/manifest.json b/src/manifest.json index 87715ee..9ff3485 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -2,19 +2,14 @@ "manifest_version": 1, "id": "io.github.jackgruber.combine-notes", "app_min_version": "1.8.1", - "version": "1.2.0", + "version": "1.2.1", "name": "Combine notes", "description": "Combine one or more notes", "author": "JackGruber", "homepage_url": "https://github.com/JackGruber/joplin-plugin-combine-notes", "repository_url": "https://github.com/JackGruber/joplin-plugin-combine-notes", - "keywords": [ - "combine", - "merge" - ], - "categories": [ - "productivity" - ], + "keywords": ["combine", "merge"], + "categories": ["productivity"], "screenshots": [], "icons": {} -} \ No newline at end of file +}