diff --git a/CHANGELOG.md b/CHANGELOG.md index 97873805..c8fb985a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +# 0.5.65 + +A maintenance update which fixes some issues with rendering embeds in Dataviews and adds a few new functions. + +- 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. +- Adds the `slice()` function for slicing arrays, similar to Javascript's `Array.slice`. Thanks to @holroy. +- Fixes several issues with rendering embeds inside dataviews. Thanks to @GottZ. +- Several documentation improvements around tasks - thanks to @holroy and @RaviOnline. + +--- + # 0.5.64 More bug fixes for inline field rendering. diff --git a/docs/docs/changelog.md b/docs/docs/changelog.md index 97873805..c8fb985a 100644 --- a/docs/docs/changelog.md +++ b/docs/docs/changelog.md @@ -1,3 +1,14 @@ +# 0.5.65 + +A maintenance update which fixes some issues with rendering embeds in Dataviews and adds a few new functions. + +- 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. +- Adds the `slice()` function for slicing arrays, similar to Javascript's `Array.slice`. Thanks to @holroy. +- Fixes several issues with rendering embeds inside dataviews. Thanks to @GottZ. +- Several documentation improvements around tasks - thanks to @holroy and @RaviOnline. + +--- + # 0.5.64 More bug fixes for inline field rendering. diff --git a/manifest-beta.json b/manifest-beta.json index d04cc4a8..9b5a3c7d 100644 --- a/manifest-beta.json +++ b/manifest-beta.json @@ -1,10 +1,11 @@ { "id": "dataview", "name": "Dataview", - "version": "0.5.64", + "version": "0.5.65", "minAppVersion": "0.13.11", "description": "Complex data views for the data-obsessed.", "author": "Michael Brenan ", "authorUrl": "https://github.com/blacksmithgu", + "helpUrl": "https://blacksmithgu.github.io/obsidian-dataview/", "isDesktopOnly": false } diff --git a/manifest.json b/manifest.json index 181ed477..9b5a3c7d 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "dataview", "name": "Dataview", - "version": "0.5.64", + "version": "0.5.65", "minAppVersion": "0.13.11", "description": "Complex data views for the data-obsessed.", "author": "Michael Brenan ", diff --git a/package.json b/package.json index d23b8afd..0bd043a1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-dataview", - "version": "0.5.64", + "version": "0.5.65", "description": "Advanced data views for Obsidian.md.", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/versions.json b/versions.json index 8b07a09c..cd1a4351 100644 --- a/versions.json +++ b/versions.json @@ -140,5 +140,6 @@ "0.5.61": "0.12.0", "0.5.62": "0.12.0", "0.5.63": "0.12.0", - "0.5.64": "0.12.0" + "0.5.64": "0.12.0", + "0.5.65": "0.12.0" }