From 6f2cb2316b44bb8f8bdf6126cfa65291cbaf0542 Mon Sep 17 00:00:00 2001 From: Clare Macrae Date: Sun, 30 Jul 2023 11:51:42 +0100 Subject: [PATCH] Update to version 4.4.0 --- docs/Introduction.md | 2 +- docs/Scripting/Expressions.md | 4 ++-- manifest.json | 2 +- package.json | 2 +- versions.json | 3 ++- 5 files changed, 7 insertions(+), 6 deletions(-) diff --git a/docs/Introduction.md b/docs/Introduction.md index 62a6cc8ba9..5677d15539 100644 --- a/docs/Introduction.md +++ b/docs/Introduction.md @@ -6,7 +6,7 @@ publish: true ## What's New? -- X.Y.Z: 🔥 Support [[Expressions#More complex expressions|variables, if statements, and functions]] in custom filters and groups +- 4.4.0: 🔥 Support [[Expressions#More complex expressions|variables, if statements, and functions]] in custom filters and groups - 4.3.0: 🔥 Bug fixes, usability improvements and `explain` support for [[Regular Expressions|regular expression]] searches - 4.2.0: 🔥 Add [[Custom Filters|custom filtering]] - 4.1.0: 🔥 Add [[Layout|hide and show tags]] diff --git a/docs/Scripting/Expressions.md b/docs/Scripting/Expressions.md index ee1f4ac726..03cfd16fe8 100644 --- a/docs/Scripting/Expressions.md +++ b/docs/Scripting/Expressions.md @@ -21,7 +21,7 @@ publish: true - Language is JavaScript. - The expression is a string instruction. - It must fit on one line. - - As of Tasks X.Y.Z, variables, functions, `if` blocks and similar can be used. See [[#More complex expressions]]. + - As of Tasks 4.4.0, variables, functions, `if` blocks and similar can be used. See [[#More complex expressions]]. - Depending on the context, one or two tasks are passed in to the expression, and a calculation is performed. - As of Tasks 4.0.0, in fact only a single task is passed in, to implement [[Custom Grouping]]. - As of Tasks 4.2.0, a single task is passed in, to implement [[Custom Filters]]. @@ -78,7 +78,7 @@ Note: ### More complex expressions -As of Tasks X.Y.Z, it is also possible to use more complex constructs in expressions: +As of Tasks 4.4.0, it is also possible to use more complex constructs in expressions: - `return` statements - named variables diff --git a/manifest.json b/manifest.json index ead5fc6008..982fade82d 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "obsidian-tasks-plugin", "name": "Tasks", - "version": "4.3.0", + "version": "4.4.0", "minAppVersion": "1.1.1", "description": "Task management for Obsidian", "author": "Martin Schenck and Clare Macrae", diff --git a/package.json b/package.json index d203099c0f..baac4e34d9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-tasks", - "version": "4.3.0", + "version": "4.4.0", "description": "Task management for the Obsidian knowledge base", "main": "main.js", "scripts": { diff --git a/versions.json b/versions.json index b6f9be8956..3ee1f390dc 100644 --- a/versions.json +++ b/versions.json @@ -71,5 +71,6 @@ "4.0.1": "1.1.1", "4.1.0": "1.1.1", "4.2.0": "1.1.1", - "4.3.0": "1.1.1" + "4.3.0": "1.1.1", + "4.4.0": "1.1.1" }