From d02aab8bc59871217a638bbfa2ffb6fd8a3b689f Mon Sep 17 00:00:00 2001 From: Clare Macrae Date: Fri, 17 May 2024 19:18:28 +0100 Subject: [PATCH] Update to version 7.2.0 --- docs/Advanced/Tasks Api.md | 4 ++-- docs/Editing/Toggling and Editing Statuses.md | 2 +- manifest.json | 2 +- package.json | 2 +- versions.json | 3 ++- 5 files changed, 7 insertions(+), 6 deletions(-) diff --git a/docs/Advanced/Tasks Api.md b/docs/Advanced/Tasks Api.md index db4b991a2e..91434b71ee 100644 --- a/docs/Advanced/Tasks Api.md +++ b/docs/Advanced/Tasks Api.md @@ -117,7 +117,7 @@ Screenshot of QuickAdd capture settings (example) ## `executeToggleTaskDoneCommand: (line: string, path: string) => string;` > [!released] -> This method was introduced in Tasks X.Y.Z. +> This method was introduced in Tasks 7.2.0. Executes the 'Tasks: Toggle task done' command on the supplied line string. It toggles and updates a task line according to a user's preferences, accounting for recurrence rules and completed status. It returns a string representing the toggled task. @@ -134,7 +134,7 @@ console.log(result); // "- [x] This is a task 📅 2024-04-24 ✅ 2024-04-23" ## Auto-Suggest Integration > [!released] -> This integration was introduced in Tasks X.Y.Z. +> This integration was introduced in Tasks 7.2.0. Plugins that [extend Obsidian's markdown editor](https://gist.github.com/Fevol/caa478ce303e69eabede7b12b2323838) can control if and when Tasks' [[Auto-Suggest]] displays by implementing a `showTasksPluginAutoSuggest` method on the extended editor class. This method must adhere the function definition below. diff --git a/docs/Editing/Toggling and Editing Statuses.md b/docs/Editing/Toggling and Editing Statuses.md index 5c73a0db0a..6e0dea920f 100644 --- a/docs/Editing/Toggling and Editing Statuses.md +++ b/docs/Editing/Toggling and Editing Statuses.md @@ -79,7 +79,7 @@ Obsidian allows you to assign a [hotkey](https://help.obsidian.md/Customization/ | In Tasks query search results | Live Preview | ❌ | | In Tasks query search results | Reading mode | ❌ | -Since Tasks X.Y.Z, this command can also be triggered programmatically via the [[Tasks Api#`executeToggleTaskDoneCommand (line string, path string) => string;`|Tasks API]]. +Since Tasks 7.2.0, this command can also be triggered programmatically via the [[Tasks Api#`executeToggleTaskDoneCommand (line string, path string) => string;`|Tasks API]]. ## Edit task modal diff --git a/manifest.json b/manifest.json index 5f84b42b55..3c72f4dced 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "obsidian-tasks-plugin", "name": "Tasks", - "version": "7.1.0", + "version": "7.2.0", "minAppVersion": "1.1.1", "description": "Task management for Obsidian", "helpUrl": "https://publish.obsidian.md/tasks/", diff --git a/package.json b/package.json index a0ae110dbb..acfd4a5352 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-tasks", - "version": "7.1.0", + "version": "7.2.0", "description": "Task management for the Obsidian knowledge base", "main": "main.js", "engines": { diff --git a/versions.json b/versions.json index 9d54837efc..ec2b9c0acb 100644 --- a/versions.json +++ b/versions.json @@ -95,5 +95,6 @@ "6.1.2": "1.1.1", "6.2.0": "1.1.1", "7.0.0": "1.1.1", - "7.1.0": "1.1.1" + "7.1.0": "1.1.1", + "7.2.0": "1.1.1" }