Skip to content

Commit 41c87cd

Browse files
committed
Auto-release 0.5.65
1 parent 52220f2 commit 41c87cd

File tree

6 files changed

+28
-4
lines changed

6 files changed

+28
-4
lines changed

Diff for: CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# 0.5.65
2+
3+
A maintenance update which fixes some issues with rendering embeds in Dataviews and adds a few new functions.
4+
5+
- Adds the `hash()` function for generating consistent uniformly-distributed values given arbitary inputs. Primarily useful for creating "random" views which remain consistent across page refreshes. Thanks to @holroy.
6+
- Adds the `slice()` function for slicing arrays, similar to Javascript's `Array.slice`. Thanks to @holroy.
7+
- Fixes several issues with rendering embeds inside dataviews. Thanks to @GottZ.
8+
- Several documentation improvements around tasks - thanks to @holroy and @RaviOnline.
9+
10+
---
11+
112
# 0.5.64
213

314
More bug fixes for inline field rendering.

Diff for: docs/docs/changelog.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# 0.5.65
2+
3+
A maintenance update which fixes some issues with rendering embeds in Dataviews and adds a few new functions.
4+
5+
- Adds the `hash()` function for generating consistent uniformly-distributed values given arbitary inputs. Primarily useful for creating "random" views which remain consistent across page refreshes. Thanks to @holroy.
6+
- Adds the `slice()` function for slicing arrays, similar to Javascript's `Array.slice`. Thanks to @holroy.
7+
- Fixes several issues with rendering embeds inside dataviews. Thanks to @GottZ.
8+
- Several documentation improvements around tasks - thanks to @holroy and @RaviOnline.
9+
10+
---
11+
112
# 0.5.64
213

314
More bug fixes for inline field rendering.

Diff for: manifest-beta.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
{
22
"id": "dataview",
33
"name": "Dataview",
4-
"version": "0.5.64",
4+
"version": "0.5.65",
55
"minAppVersion": "0.13.11",
66
"description": "Complex data views for the data-obsessed.",
77
"author": "Michael Brenan <blacksmithgu@gmail.com>",
88
"authorUrl": "https://github.com/blacksmithgu",
9+
"helpUrl": "https://blacksmithgu.github.io/obsidian-dataview/",
910
"isDesktopOnly": false
1011
}

Diff for: 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.64",
4+
"version": "0.5.65",
55
"minAppVersion": "0.13.11",
66
"description": "Complex data views for the data-obsessed.",
77
"author": "Michael Brenan <blacksmithgu@gmail.com>",

Diff for: 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.64",
3+
"version": "0.5.65",
44
"description": "Advanced data views for Obsidian.md.",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",

Diff for: versions.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -140,5 +140,6 @@
140140
"0.5.61": "0.12.0",
141141
"0.5.62": "0.12.0",
142142
"0.5.63": "0.12.0",
143-
"0.5.64": "0.12.0"
143+
"0.5.64": "0.12.0",
144+
"0.5.65": "0.12.0"
144145
}

0 commit comments

Comments
 (0)