From 8145562af53bbd1bb0817593c65f93fb0b2e9890 Mon Sep 17 00:00:00 2001 From: jiyinyiyong Date: Fri, 9 Jul 2021 19:09:45 +0800 Subject: [PATCH] tag 0.4.8 --- Cargo.lock | 2 +- Cargo.toml | 2 +- package.json | 2 +- src/cirru/calcit-core.cirru | 1 + ts-src/calcit.procs.ts | 2 +- 5 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0831a855..1d64f62b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -81,7 +81,7 @@ dependencies = [ [[package]] name = "calcit_runner" -version = "0.4.7" +version = "0.4.8" dependencies = [ "chrono", "cirru_edn", diff --git a/Cargo.toml b/Cargo.toml index 44004f00..71084d5b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "calcit_runner" -version = "0.4.7" +version = "0.4.8" authors = ["jiyinyiyong "] edition = "2018" license = "MIT" diff --git a/package.json b/package.json index bbd8712f..16636d4f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@calcit/procs", - "version": "0.4.7", + "version": "0.4.8", "main": "./lib/calcit.procs.js", "devDependencies": { "@types/node": "^15.12.2", diff --git a/src/cirru/calcit-core.cirru b/src/cirru/calcit-core.cirru index a51c4d2c..b2f0d335 100644 --- a/src/cirru/calcit-core.cirru +++ b/src/cirru/calcit-core.cirru @@ -1259,6 +1259,7 @@ :empty? &set:empty? :include include :includes? &set:includes? + :contains? &set:includes? :intersection intersection :to-list &set:to-list :union union diff --git a/ts-src/calcit.procs.ts b/ts-src/calcit.procs.ts index 3f2d2fd7..5fe3aefa 100644 --- a/ts-src/calcit.procs.ts +++ b/ts-src/calcit.procs.ts @@ -1,5 +1,5 @@ // CALCIT VERSION -export const calcit_version = "0.4.7"; +export const calcit_version = "0.4.8"; import { overwriteComparator, initTernaryTreeMap } from "@calcit/ternary-tree"; import { parse } from "@cirru/parser.ts";