From 337f610cf56b83df1890d93be713eaabde63c2d8 Mon Sep 17 00:00:00 2001 From: jiyinyiyong Date: Mon, 11 Oct 2021 19:39:31 +0800 Subject: [PATCH] upgrade edn; tag 0.5.0-a6 --- Cargo.lock | 6 +++--- Cargo.toml | 4 ++-- calcit/calcit.cirru | 4 ++-- calcit/compact.cirru | 2 +- package.json | 2 +- ts-src/calcit.procs.ts | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4600c0b0..382d9451 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -39,7 +39,7 @@ dependencies = [ [[package]] name = "calcit_runner" -version = "0.5.0-a5" +version = "0.5.0-a6" dependencies = [ "cirru_edn", "cirru_parser", @@ -66,9 +66,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "cirru_edn" -version = "0.2.0-a1" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37d330ef840d99262797910f774aa2d210987464cc3f29849f63d214d274fe44" +checksum = "2c7cac61b1f862d248bb55df7f5120e122d6394498f96fa40d60afeaa1cab45b" dependencies = [ "cirru_parser", ] diff --git a/Cargo.toml b/Cargo.toml index 2b0d5dd1..115a58d5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "calcit_runner" -version = "0.5.0-a5" +version = "0.5.0-a6" authors = ["jiyinyiyong "] edition = "2018" license = "MIT" @@ -20,7 +20,7 @@ exclude = [ # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -cirru_edn = "0.2.0-a1" +cirru_edn = "0.2.0" cirru_parser = "0.1.8" clap = "2.33.3" dirs = "4.0.0" diff --git a/calcit/calcit.cirru b/calcit/calcit.cirru index 6255bd78..2cb2f679 100644 --- a/calcit/calcit.cirru +++ b/calcit/calcit.cirru @@ -1010,7 +1010,7 @@ :by |u0 |yT $ {} :data $ {} - |T $ {} (:text |echo-values) (:type :leaf) (:at 1618659589617) (:by |u0) + |T $ {} (:text |print-values) (:type :leaf) (:at 1633952520593) (:by |u0) |j $ {} (:text |1) (:type :leaf) (:at 1618659590535) (:by |u0) |r $ {} (:text "|\"1") (:type :leaf) (:at 1618659591512) (:by |u0) |v $ {} (:text |:a) (:type :leaf) (:at 1618659595541) (:by |u0) @@ -1130,7 +1130,7 @@ :by |u0 |yj $ {} :data $ {} - |D $ {} (:type :leaf) (:by |u0) (:at 1633873455342) (:text |;) + |D $ {} (:text |;) (:type :leaf) (:at 1633873455342) (:by |u0) |T $ {} (:text |show-data) (:type :leaf) (:at 1633872991931) (:by |u0) :type :expr :at 1633872988484 diff --git a/calcit/compact.cirru b/calcit/compact.cirru index 77562f3c..9cc8ee43 100644 --- a/calcit/compact.cirru +++ b/calcit/compact.cirru @@ -61,7 +61,7 @@ defn demos () (echo "\"demo") echo $ &+ 2 2 echo "\"f1" $ f1 - echo-values 1 "\"1" :a $ [] 1 2 + print-values 1 "\"1" :a $ [] 1 2 echo $ &{} :a 1 :b 2 echo $ #{} 1 2 3 |four lib/f2 diff --git a/package.json b/package.json index 3d34d02b..c1e86ef6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@calcit/procs", - "version": "0.5.0-a5", + "version": "0.5.0-a6", "main": "./lib/calcit.procs.js", "devDependencies": { "@types/node": "^16.9.6", diff --git a/ts-src/calcit.procs.ts b/ts-src/calcit.procs.ts index 27046df3..1220a090 100644 --- a/ts-src/calcit.procs.ts +++ b/ts-src/calcit.procs.ts @@ -1,5 +1,5 @@ // CALCIT VERSION -export const calcit_version = "0.5.0-a5"; +export const calcit_version = "0.5.0-a6"; import { overwriteComparator, initTernaryTreeMap } from "@calcit/ternary-tree"; import { parse, ICirruNode } from "@cirru/parser.ts";