Skip to content

Commit 7096704

Browse files
committed
js syntax to fix node 22; tag 0.9.9
1 parent f686ee5 commit 7096704

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "calcit"
3-
version = "0.9.8"
3+
version = "0.9.9"
44
authors = ["jiyinyiyong <jiyinyiyong@gmail.com>"]
55
edition = "2024"
66
license = "MIT"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ Read more in [Respo Calcit Workflow](https://github.com/calcit-lang/respo-calcit
100100

101101
```cirru
102102
{}
103-
:calcit-version |0.9.8
103+
:calcit-version |0.9.9
104104
:dependencies $ {}
105105
|calcit-lang/memof |0.0.11
106106
|calcit-lang/lilac |main

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@calcit/procs",
3-
"version": "0.9.8",
3+
"version": "0.9.9",
44
"main": "./lib/calcit.procs.mjs",
55
"devDependencies": {
66
"@types/node": "^22.10.7",

ts-src/calcit.procs.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import pkg from "./package.json" assert { type: "json" };
1+
import pkg from "./package.json" with { type: "json" };
22

33
export const calcit_version = pkg.version;
44
export const calcit_package_json = pkg;

0 commit comments

Comments
 (0)