Skip to content

Commit

Permalink
fix method name .extend-as ; bump 0.4.16
Browse files Browse the repository at this point in the history
  • Loading branch information
tiye committed Aug 10, 2021
1 parent cf38fe6 commit a512634
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "calcit_runner"
version = "0.4.15"
version = "0.4.16"
authors = ["jiyinyiyong <jiyinyiyong@gmail.com>"]
edition = "2018"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion calcit/snapshots/test-record.cirru
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@
.nth kitty 0

&let
persian $ .extend kitty :Persian :age 10
persian $ .extend-as kitty :Persian :age 10
assert= 10 $ .get persian :age
assert= |Persian $ .get-name persian

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@calcit/procs",
"version": "0.4.15",
"version": "0.4.16",
"main": "./lib/calcit.procs.js",
"devDependencies": {
"@types/node": "^16.4.13",
Expand Down
2 changes: 1 addition & 1 deletion src/cirru/calcit-core.cirru
Original file line number Diff line number Diff line change
Expand Up @@ -1310,7 +1310,7 @@
:nth &record:nth
:assoc &record:assoc
:from-map &record:from-map
:extend &record:extend-as
:extend-as &record:extend-as

|&core-list-class $ quote
defrecord! &core-list-class
Expand Down
2 changes: 1 addition & 1 deletion ts-src/calcit.procs.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// CALCIT VERSION
export const calcit_version = "0.4.15";
export const calcit_version = "0.4.16";

import { overwriteComparator, initTernaryTreeMap } from "@calcit/ternary-tree";
import { parse } from "@cirru/parser.ts";
Expand Down

0 comments on commit a512634

Please sign in to comment.