diff --git a/docs/Introduction.md b/docs/Introduction.md index 4a62644213..e8da529519 100644 --- a/docs/Introduction.md +++ b/docs/Introduction.md @@ -6,7 +6,7 @@ publish: true ## What's New? -- X.Y.Z: 🔥 Bug fixes, usability improvements and `explain` support for [[Regular Expressions|regular expression]] searches +- 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]] - 4.0.0: 🔥 Add [[Custom Grouping|custom grouping]], using [[Task Properties|task properties]] to create [[expressions|expressions]] - the start of a whole new [[About Scripting|scripting]] world in Tasks! diff --git a/docs/Queries/Explaining Queries.md b/docs/Queries/Explaining Queries.md index 4825492d3e..af8f322909 100644 --- a/docs/Queries/Explaining Queries.md +++ b/docs/Queries/Explaining Queries.md @@ -60,7 +60,7 @@ It also shows that `starts` searches also match tasks with not start date. ### Regular Expressions are explained > [!released] -> Introduced in Tasks X.Y.Z. +> Introduced in Tasks 4.3.0. For example, when the following [[Regular Expressions|regular expression]] is placed in a tasks query block: diff --git a/docs/Queries/Regular Expressions.md b/docs/Queries/Regular Expressions.md index 0d169d7c70..d8187ce5c6 100644 --- a/docs/Queries/Regular Expressions.md +++ b/docs/Queries/Regular Expressions.md @@ -64,7 +64,7 @@ This is called 'escaping'. See [Escaping, special characters](https://javascript See the next section for the meaning of some of these characters. > [!Tip] -> Since Tasks X.Y.Z, it is no longer necessary to escape `/` characters as `\/`, although searches will still work if you do escape them. +> Since Tasks 4.3.0, it is no longer necessary to escape `/` characters as `\/`, although searches will still work if you do escape them. > > So these two searches are now identical, and will both search for tasks in any folder that contains `Root/Sub-Folder/Sub-Sub-Folder` anywhere: > @@ -76,7 +76,7 @@ See the next section for the meaning of some of these characters. ## Explain: inspecting regular expressions > [!released] -> Introduced in Tasks X.Y.Z. +> Introduced in Tasks 4.3.0. To see how Tasks interpreted your regular expression, you can add an `explain` line to the query. diff --git a/manifest.json b/manifest.json index 205320954e..ead5fc6008 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "obsidian-tasks-plugin", "name": "Tasks", - "version": "4.2.0", + "version": "4.3.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 a7bc5c4a42..d203099c0f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-tasks", - "version": "4.2.0", + "version": "4.3.0", "description": "Task management for the Obsidian knowledge base", "main": "main.js", "scripts": { diff --git a/versions.json b/versions.json index 1d988ac4d8..b6f9be8956 100644 --- a/versions.json +++ b/versions.json @@ -70,5 +70,6 @@ "4.0.0": "1.1.1", "4.0.1": "1.1.1", "4.1.0": "1.1.1", - "4.2.0": "1.1.1" + "4.2.0": "1.1.1", + "4.3.0": "1.1.1" }