Skip to content

Commit 8885dce

Browse files
committed
docs: we're now embedding luau 0.701 from 0.697
[skip ci]
1 parent 60d0889 commit 8885dce

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

β€ŽREADME.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
| [json](/src/cmd/json.rs#L2)<br>πŸ‘† | Convert JSON to CSV.
6161
| [jsonl](/src/cmd/jsonl.rs#L2)<br>πŸš€πŸ”£ | Convert newline-delimited JSON ([JSONL](https://jsonlines.org/)/[NDJSON](http://ndjson.org/)) to CSV. See `tojsonl` command to convert CSV to JSONL.
6262
| [lens](/src/cmd/lens.rs#L2)βœ¨πŸ—ƒοΈ<br>πŸ»β€β„οΈ | Interactively view, search & filter tabular data files (CSV, Arrow, Avro/IPC, Parquet, JSON Array and JSONL formats supported) using the [csvlens](https://github.com/YS-L/csvlens#csvlens) engine.
63-
| [luau](/src/cmd/luau.rs#L2) πŸ‘‘βœ¨<br>πŸ“‡πŸŒπŸ”£πŸ“š ![CKAN](docs/images/ckan.png) | <a name="luau_deeplink"></a>Create multiple new computed columns, filter rows, compute aggregations and build complex data pipelines by executing a [Luau](https://luau-lang.org) [0.697](https://github.com/Roblox/luau/releases/tag/0.697) expression/script for every row of a CSV file ([sequential mode](https://github.com/dathere/qsv/blob/bb72c4ef369d192d85d8b7cc6e972c1b7df77635/tests/test_luau.rs#L254-L298)), or using [random access](https://www.webopedia.com/definitions/random-access/) with an index ([random access mode](https://github.com/dathere/qsv/blob/bb72c4ef369d192d85d8b7cc6e972c1b7df77635/tests/test_luau.rs#L367-L415)).<br>Can process a single Luau expression or [full-fledged data-wrangling scripts using lookup tables](https://github.com/dathere/qsv-lookup-tables#example) with discrete BEGIN, MAIN and END sections.<br> It is not just another qsv command, it is qsv's [Domain-specific Language](https://en.wikipedia.org/wiki/Domain-specific_language) (DSL) with [numerous qsv-specific helper functions](https://github.com/dathere/qsv/blob/113eee17b97882dc368b2e65fec52b86df09f78b/src/cmd/luau.rs#L1356-L2290) to build production data pipelines. |
63+
| [luau](/src/cmd/luau.rs#L2) πŸ‘‘βœ¨<br>πŸ“‡πŸŒπŸ”£πŸ“š ![CKAN](docs/images/ckan.png) | <a name="luau_deeplink"></a>Create multiple new computed columns, filter rows, compute aggregations and build complex data pipelines by executing a [Luau](https://luau-lang.org) [0.701](https://github.com/Roblox/luau/releases/tag/0.701) expression/script for every row of a CSV file ([sequential mode](https://github.com/dathere/qsv/blob/bb72c4ef369d192d85d8b7cc6e972c1b7df77635/tests/test_luau.rs#L254-L298)), or using [random access](https://www.webopedia.com/definitions/random-access/) with an index ([random access mode](https://github.com/dathere/qsv/blob/bb72c4ef369d192d85d8b7cc6e972c1b7df77635/tests/test_luau.rs#L367-L415)).<br>Can process a single Luau expression or [full-fledged data-wrangling scripts using lookup tables](https://github.com/dathere/qsv-lookup-tables#example) with discrete BEGIN, MAIN and END sections.<br> It is not just another qsv command, it is qsv's [Domain-specific Language](https://en.wikipedia.org/wiki/Domain-specific_language) (DSL) with [numerous qsv-specific helper functions](https://github.com/dathere/qsv/blob/113eee17b97882dc368b2e65fec52b86df09f78b/src/cmd/luau.rs#L1356-L2290) to build production data pipelines. |
6464
| [partition](/src/cmd/partition.rs#L2)<br>πŸ‘† | Partition a CSV based on a column value. |
6565
| [pivotp](/src/cmd/pivotp.rs#L2)✨<br>πŸš€πŸ»β€β„οΈπŸͺ„ | Pivot CSV data. Features "smart" aggregation auto-selection based on data type & stats. |
6666
| [pro](/src/cmd/pro.rs#L2) | Interact with the [qsv pro](https://qsvpro.dathere.com) API. |

β€Ždocs/INTERPRETERS.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ As date manipulation is often needed, the [LuaDate](https://tieske.github.io/dat
1414

1515
Finally, as [qsv's DSL](../README.md#luau_deeplink) (πŸ‘‘), `luau` will gain even more features over time compared to the `python` feature.
1616

17-
[Luau 0.697](https://github.com/Roblox/luau/releases/tag/0.697) is currently embedded - qsv's policy is to use the latest stable Luau version at the time of each qsv release.
17+
[Luau 0.701](https://github.com/Roblox/luau/releases/tag/0.701) is currently embedded - qsv's policy is to use the latest stable Luau version at the time of each qsv release.
1818

1919
## Building qsv with python feature
2020

β€Žsrc/cmd/luau.rsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
static USAGE: &str = r#"
22
Create multiple new computed columns, filter rows or compute aggregations by
3-
executing a Luau 0.697 script for every row (SEQUENTIAL MODE) or for
3+
executing a Luau 0.701 script for every row (SEQUENTIAL MODE) or for
44
specified rows (RANDOM ACCESS MODE) of a CSV file.
55
66
Luau is not just another qsv command. It is qsv's Domain-Specific Language (DSL)

0 commit comments

Comments
Β (0)