Skip to content

Commit 29b1ad8

Browse files
committed
Auto-release 0.5.68
1 parent 7f7ec04 commit 29b1ad8

File tree

7 files changed

+35
-9
lines changed

7 files changed

+35
-9
lines changed

Diff for: CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
<<<<<<< HEAD
2+
# 0.5.68
3+
4+
- Many fixes to the documentation
5+
- #2318 & co: Various fixes related to _live preview_ rendering of lists
6+
- New/documented functions for `unique()`, `display()`, `firstvalue()`
7+
- Added DOM information related to standalone inline fields
8+
9+
This is the first release done by @holroy, so thanks to him for further developing of _Dataview_. Thank you also to all the people having contributed through PRs and issues.
10+
11+
---
12+
13+
=======
14+
>>>>>>> parent of 993bf62 (Auto-release 0.5.68)
115
# 0.5.67
216

317
Includes several documentation fixes and several community-contributed bug fixes.

Diff for: docs/docs/changelog.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# 0.5.68
2+
3+
- Many fixes to the documentation
4+
- #2318 & co: Various fixes related to _live preview_ rendering of lists
5+
- New/documented functions for `unique()`, `display()`, `firstvalue()`
6+
- Added DOM information related to standalone inline fields
7+
8+
This is the first release done by @holroy, so thanks to him for further developing of _Dataview_. Thank you also to all the people having contributed through PRs and issues.
9+
10+
---
11+
112
# 0.5.67
213

314
Includes several documentation fixes and several community-contributed bug fixes.

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

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

Diff for: scripts/release

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22
# Automatically update versions in files and create an autorelease.
3-
# Requires the github CLI.
3+
# Requires the github CLI and jq (if you don't update the version manually).
44
NEW_VERSION=$1
55

66
if [ -z "$NEW_VERSION" ]; then
@@ -30,10 +30,10 @@ rm -f manifest-beta.tmp.json
3030
rm -f versions.tmp.json
3131

3232
# Rewrite versions in relevant files.
33-
jq ".version=\"${NEW_VERSION}\"" package.json > package.tmp.json && mv package.tmp.json package.json
34-
jq ".version=\"${NEW_VERSION}\"" manifest.json > manifest.tmp.json && mv manifest.tmp.json manifest.json
35-
jq ".version=\"${NEW_VERSION}\"" manifest-beta.json > manifest-beta.tmp.json && mv manifest-beta.tmp.json manifest-beta.json
36-
jq ". + {\"${NEW_VERSION}\": \"0.12.0\"}" versions.json > versions.tmp.json && mv versions.tmp.json versions.json
33+
# no jq# jq ".version=\"${NEW_VERSION}\"" package.json > package.tmp.json && mv package.tmp.json package.json
34+
# no jq# jq ".version=\"${NEW_VERSION}\"" manifest.json > manifest.tmp.json && mv manifest.tmp.json manifest.json
35+
# no jq# jq ".version=\"${NEW_VERSION}\"" manifest-beta.json > manifest-beta.tmp.json && mv manifest-beta.tmp.json manifest-beta.json
36+
# no jq# jq ". + {\"${NEW_VERSION}\": \"0.12.0\"}" versions.json > versions.tmp.json && mv versions.tmp.json versions.json
3737

3838
# Overwrite the beta manifest as well.
3939
cp manifest.json manifest-beta.json

Diff for: versions.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -143,5 +143,6 @@
143143
"0.5.64": "0.12.0",
144144
"0.5.65": "0.12.0",
145145
"0.5.66": "0.12.0",
146-
"0.5.67": "0.12.0"
146+
"0.5.67": "0.12.0",
147+
"0.5.68": "0.12.0"
147148
}

0 commit comments

Comments
 (0)