Skip to content

Commit 644e610

Browse files
committed
Update to version 7.16.0
1 parent 9da4e64 commit 644e610

File tree

7 files changed

+8
-7
lines changed

7 files changed

+8
-7
lines changed

docs/Queries/Filters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1283,7 +1283,7 @@ For example, this could be used to extract information from `task.originalMarkdo
12831283

12841284
There is no built-in instruction to filter by the task's line number.
12851285

1286-
Since Tasks X.Y.Z, **[[Custom Filters|custom filtering]] by the task's line number** is now possible, using `task.lineNumber`.
1286+
Since Tasks 7.16.0, **[[Custom Filters|custom filtering]] by the task's line number** is now possible, using `task.lineNumber`.
12871287

12881288
> [!tip]
12891289
> With `task.lineNumber`, the first line in the file is on line number `0` (zero), not `1` (one).

docs/Queries/Grouping.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -832,7 +832,7 @@ group by function task.originalMarkdown.replace(/^[^\[\]]+\[.\] */, '')
832832
833833
There is no built-in instruction to group by the task's line number.
834834

835-
Since Tasks X.Y.Z, **[[Custom Grouping|custom grouping]] by the task's line number** is now possible, using `task.lineNumber`.
835+
Since Tasks 7.16.0, **[[Custom Grouping|custom grouping]] by the task's line number** is now possible, using `task.lineNumber`.
836836
837837
> [!tip]
838838
> With `task.lineNumber`, the first line in the file is on line number `0` (zero), not `1` (one).

docs/Queries/Sorting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ sort by function task.originalMarkdown
510510

511511
There is no built-in instruction to sort by the task's line number.
512512

513-
Since Tasks X.Y.Z, **[[Custom Sorting|custom sorting]] by the task's line number** is now possible, using `task.lineNumber`.
513+
Since Tasks 7.16.0, **[[Custom Sorting|custom sorting]] by the task's line number** is now possible, using `task.lineNumber`.
514514

515515
> [!tip]
516516
> With `task.lineNumber`, the first line in the file is on line number `0` (zero), not `1` (one).

docs/What is New/Changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ _In recent [Tasks releases](https://github.com/obsidian-tasks-group/obsidian-tas
1212

1313
## 7.x releases
1414

15-
- X.Y.Z:
15+
- 7.16.0:
1616
- Add `task.lineNumber`.
1717
- This enables `sort by function task.lineNumber` to override the [[Sorting#Default sort order|default sort order]].
1818
- See [[Filters#Line Number|filters]], [[Sorting#Line Number|sorting]] and [[Grouping#Line Number|grouping]].

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "obsidian-tasks-plugin",
33
"name": "Tasks",
4-
"version": "7.15.1",
4+
"version": "7.16.0",
55
"minAppVersion": "1.4.0",
66
"description": "Track tasks across your vault. Supports due dates, recurring tasks, done dates, sub-set of checklist items, and filtering.",
77
"helpUrl": "https://publish.obsidian.md/tasks/",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "obsidian-tasks",
3-
"version": "7.15.1",
3+
"version": "7.16.0",
44
"description": "Task management for the Obsidian knowledge base",
55
"main": "main.js",
66
"engines": {

versions.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,5 +117,6 @@
117117
"7.13.0": "1.1.1",
118118
"7.14.0": "1.1.1",
119119
"7.15.0": "1.4.0",
120-
"7.15.1": "1.4.0"
120+
"7.15.1": "1.4.0",
121+
"7.16.0": "1.4.0"
121122
}

0 commit comments

Comments
 (0)