Skip to content

Commit c63cc4c

Browse files
committed
Auto-release beta 0.1.21
1 parent 24f6dd3 commit c63cc4c

File tree

4 files changed

+18
-3
lines changed

4 files changed

+18
-3
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
# 0.1.21 (Beta)
2+
3+
- Adds `dc.evaluate()` and `dc.tryEvaluate()` for evaluating the datacore expression language programmatically.
4+
- Adds postfix function calls to the datacore syntax. This allows you to chain functions:
5+
6+
```js
7+
lower("YES") => "YES".lower()
8+
replace(lower("YES"), "e", a") => "YES".lower().replace("e", a")
9+
```
10+
11+
Postfix syntax implicitly adds the callee object as the first argument.
12+
13+
---
14+
115
# 0.1.20
216

317
- Fix connected link searches - searching for `linksto([[File]])` will now correctly search around that file, for example.

manifest-beta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "datacore",
33
"name": "Datacore",
4-
"version": "0.1.20",
4+
"version": "0.1.21",
55
"minAppVersion": "1.4.11",
66
"description": "Reactive data engine for Obsidian.md.",
77
"author": "Michael Brenan",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "datacore",
3-
"version": "0.1.20",
3+
"version": "0.1.21",
44
"description": "Reactive data engine for Obsidian.md.",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",

versions.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,6 @@
1919
"0.1.17": "1.4.11",
2020
"0.1.18": "1.4.11",
2121
"0.1.19": "1.4.11",
22-
"0.1.20": "0.12.0"
22+
"0.1.20": "0.12.0",
23+
"0.1.21": "1.4.11"
2324
}

0 commit comments

Comments
 (0)