Skip to content

Commit 05c201a

Browse files
author
Michael Brenan
committed
Auto-release 0.5.24
1 parent 1cb925d commit 05c201a

File tree

6 files changed

+27
-4
lines changed

6 files changed

+27
-4
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# 0.5.24
2+
3+
Several bugfixes:
4+
5+
- Nulls are now sorted first rather than last; it's generally good practice to explicitly check for nulls in your
6+
queries to avoid strange behavior.
7+
- Dataview now properly parses space-delimited tags (like `tags: abc def ghi`).
8+
- Dataview now supports dropping the entire file cache in case of bugs.
9+
10+
---
11+
112
# 0.5.23
213

314
- Fix #1140: Force API objects to be arrays if they are iterables.

docs/docs/changelog.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# 0.5.24
2+
3+
Several bugfixes:
4+
5+
- Nulls are now sorted first rather than last; it's generally good practice to explicitly check for nulls in your
6+
queries to avoid strange behavior.
7+
- Dataview now properly parses space-delimited tags (like `tags: abc def ghi`).
8+
- Dataview now supports dropping the entire file cache in case of bugs.
9+
10+
---
11+
112
# 0.5.23
213

314
- Fix #1140: Force API objects to be arrays if they are iterables.

manifest-beta.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "dataview",
33
"name": "Dataview",
4-
"version": "0.5.23",
4+
"version": "0.5.24",
55
"minAppVersion": "0.13.11",
66
"description": "Complex data views for the data-obsessed.",
77
"author": "Michael Brenan <blacksmithgu@gmail.com>",

manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "dataview",
33
"name": "Dataview",
4-
"version": "0.5.23",
4+
"version": "0.5.24",
55
"minAppVersion": "0.13.11",
66
"description": "Complex data views for the data-obsessed.",
77
"author": "Michael Brenan <blacksmithgu@gmail.com>",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "obsidian-dataview",
3-
"version": "0.5.23",
3+
"version": "0.5.24",
44
"description": "Advanced data views for Obsidian.md.",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",

versions.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -99,5 +99,6 @@
9999
"0.5.20": "0.13.11",
100100
"0.5.21": "0.12.0",
101101
"0.5.22": "0.12.0",
102-
"0.5.23": "0.12.0"
102+
"0.5.23": "0.12.0",
103+
"0.5.24": "0.12.0"
103104
}

0 commit comments

Comments
 (0)