diff --git a/docs/Introduction.md b/docs/Introduction.md index ae266688c6..75c15921fe 100644 --- a/docs/Introduction.md +++ b/docs/Introduction.md @@ -13,8 +13,8 @@ _In recent [releases](https://github.com/obsidian-tasks-group/obsidian-tasks/rel Move the older ones down to the top of the comment block below... --> -- X.Y.Z: - - Major improvements to [[Combining Filters]] with Boolean combinations. See [[Combining Filters#Appendix Changes to Boolean filters in Tasks X.Y.Z|the appendix]] for details. +- 7.0.0: + - Major improvements to [[Combining Filters]] with Boolean combinations. See [[Combining Filters#Appendix Changes to Boolean filters in Tasks 7.0.0|the appendix]] for details. - Add documentation page [[Resources]], with links to write-ups, talks and sample vaults from users. - 6.1.0: - Add support for [[task dependencies]]: diff --git a/docs/Queries/Combining Filters.md b/docs/Queries/Combining Filters.md index 35dec613ed..4bb5765c7b 100644 --- a/docs/Queries/Combining Filters.md +++ b/docs/Queries/Combining Filters.md @@ -9,7 +9,7 @@ publish: true > [!released] > > - Introduced in Tasks 1.9.0. -> - Major improvements in Tasks X.Y.Z: for details, see [[#Appendix Changes to Boolean filters in Tasks X.Y.Z]]. +> - Major improvements in Tasks 7.0.0: for details, see [[#Appendix Changes to Boolean filters in Tasks 7.0.0]]. The [[Filters|individual filters]] provided by Tasks can be combined together in powerful ways, by: @@ -517,16 +517,16 @@ The above is much easier to maintain than the other option of: (tags do not include #context/loc3) ```` -## Appendix: Changes to Boolean filters in Tasks X.Y.Z +## Appendix: Changes to Boolean filters in Tasks 7.0.0 -Tasks X.Y.Z involved a tremendous amount of work behind the scenes to improve the behaviour and usability of Boolean filters. +Tasks 7.0.0 involved a tremendous amount of work behind the scenes to improve the behaviour and usability of Boolean filters. This section describes the changes, for completeness. ### Mixing of delimiter types is no longer allowed > [!Danger] Breaking change -> This (undocumented) mixing of delimiter types used to be a valid query, prior to Tasks X.Y.Z: +> This (undocumented) mixing of delimiter types used to be a valid query, prior to Tasks 7.0.0: > > ```text > (not done) AND "is recurring" @@ -562,7 +562,7 @@ See [[#Delimiters]] above. Spaces around Operators are now optional. -For example, before Tasks X.Y.Z the following was invalid, as there were no spaces `AND`. +For example, before Tasks 7.0.0 the following was invalid, as there were no spaces `AND`. `(path includes a)AND(path includes b)` diff --git a/docs/Support and Help/Breaking Changes.md b/docs/Support and Help/Breaking Changes.md index f82186fd68..15cfdfd615 100644 --- a/docs/Support and Help/Breaking Changes.md +++ b/docs/Support and Help/Breaking Changes.md @@ -16,13 +16,13 @@ In this case, as we use [semantic versioning](https://semver.org), we will alway To help users updating across multiple Tasks releases, we collect here links to the few Tasks breaking changes - most recent first. -## Tasks X.Y.Z (14 April 2024) +## Tasks 7.0.0 (14 April 2024) -*Release notes: [Tasks X.Y.Z](https://github.com/obsidian-tasks-group/obsidian-tasks/releases/tag/X.Y.Z).* +*Release notes: [Tasks 7.0.0](https://github.com/obsidian-tasks-group/obsidian-tasks/releases/tag/7.0.0).* - **Boolean expressions** - Significant improvements to [[Combining Filters]] with Boolean expressions. - - See [[Combining Filters#Appendix Changes to Boolean filters in Tasks X.Y.Z|the appendix]] for one small breaking change, and all the improvements. + - See [[Combining Filters#Appendix Changes to Boolean filters in Tasks 7.0.0|the appendix]] for one small breaking change, and all the improvements. ## Tasks 6.0.0 (19 January 2024) diff --git a/manifest.json b/manifest.json index 8e535b315d..9600b384a3 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "obsidian-tasks-plugin", "name": "Tasks", - "version": "6.2.0", + "version": "7.0.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 6f30f19a42..3a0aebf8ef 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-tasks", - "version": "6.2.0", + "version": "7.0.0", "description": "Task management for the Obsidian knowledge base", "main": "main.js", "engines": { diff --git a/versions.json b/versions.json index 6d56698bbb..825a803da4 100644 --- a/versions.json +++ b/versions.json @@ -93,5 +93,6 @@ "6.1.0": "1.1.1", "6.1.1": "1.1.1", "6.1.2": "1.1.1", - "6.2.0": "1.1.1" + "6.2.0": "1.1.1", + "7.0.0": "1.1.1" }