From 70967043f43375a9272111fe53992346fa09b5ed Mon Sep 17 00:00:00 2001 From: tiye <jiyinyiyong@gmail.com> Date: Mon, 10 Mar 2025 01:58:15 +0800 Subject: [PATCH 1/2] js syntax to fix node 22; tag 0.9.9 --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- README.md | 2 +- package.json | 2 +- ts-src/calcit.procs.mts | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2065465..356ab31 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "archery" @@ -77,7 +77,7 @@ checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36" [[package]] name = "calcit" -version = "0.9.8" +version = "0.9.9" dependencies = [ "argh", "cirru_edn", diff --git a/Cargo.toml b/Cargo.toml index 540b0d8..9bbb937 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "calcit" -version = "0.9.8" +version = "0.9.9" authors = ["jiyinyiyong <jiyinyiyong@gmail.com>"] edition = "2024" license = "MIT" diff --git a/README.md b/README.md index 37a61e7..e98d8d8 100644 --- a/README.md +++ b/README.md @@ -100,7 +100,7 @@ Read more in [Respo Calcit Workflow](https://github.com/calcit-lang/respo-calcit ```cirru {} - :calcit-version |0.9.8 + :calcit-version |0.9.9 :dependencies $ {} |calcit-lang/memof |0.0.11 |calcit-lang/lilac |main diff --git a/package.json b/package.json index 35ee86a..f8ac6fa 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@calcit/procs", - "version": "0.9.8", + "version": "0.9.9", "main": "./lib/calcit.procs.mjs", "devDependencies": { "@types/node": "^22.10.7", diff --git a/ts-src/calcit.procs.mts b/ts-src/calcit.procs.mts index a6b0023..310ae0f 100644 --- a/ts-src/calcit.procs.mts +++ b/ts-src/calcit.procs.mts @@ -1,4 +1,4 @@ -import pkg from "./package.json" assert { type: "json" }; +import pkg from "./package.json" with { type: "json" }; export const calcit_version = pkg.version; export const calcit_package_json = pkg; From 04a64277d192c80363f39119925b9e6b85fe5e38 Mon Sep 17 00:00:00 2001 From: tiye <jiyinyiyong@gmail.com> Date: Mon, 17 Mar 2025 00:50:15 +0800 Subject: [PATCH 2/2] set --version option for print version only --- src/bin/cr.rs | 10 +++++++--- src/cli_args.rs | 3 +++ 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/src/bin/cr.rs b/src/bin/cr.rs index 0157efe..fec6737 100644 --- a/src/bin/cr.rs +++ b/src/bin/cr.rs @@ -26,9 +26,6 @@ use calcit::{ fn main() -> Result<(), String> { builtins::effects::init_effects_states(); - // get dirty functions injected - #[cfg(not(target_arch = "wasm32"))] - injection::inject_platform_apis(); let cli_args: ToplevelCalcit = argh::from_env(); @@ -36,6 +33,13 @@ fn main() -> Result<(), String> { let assets_watch = cli_args.watch_dir.to_owned(); println!("calcit version: {}", cli_args::CALCIT_VERSION); + if cli_args.version { + return Ok(()); + } + + // get dirty functions injected + #[cfg(not(target_arch = "wasm32"))] + injection::inject_platform_apis(); let core_snapshot = calcit::load_core_snapshot()?; diff --git a/src/cli_args.rs b/src/cli_args.rs index ca579a3..aab7d16 100644 --- a/src/cli_args.rs +++ b/src/cli_args.rs @@ -37,6 +37,9 @@ pub struct ToplevelCalcit { /// input source file, defaults to "compact.cirru" #[argh(positional, default = "String::from(\"compact.cirru\")")] pub input: String, + /// print version only + #[argh(switch)] + pub version: bool, } #[derive(FromArgs, PartialEq, Debug, Clone)]