diff --git a/c/draft-release-notes.md b/c/draft-release-notes.md index 910a0c07a..a973b8bb3 100644 --- a/c/draft-release-notes.md +++ b/c/draft-release-notes.md @@ -5,7 +5,7 @@ filter out input lines starting with `#`, for all file formats. Likewise, `mlr --skip-comments-with X` lets you specify the comment-string `X`. Comments are only supported at start of data line. -* The [**count-similar**](http://johnkerl.org/miller-releases/miller-5.2.0/doc/reference-verbs.html#count-similar) +* The [**count-similar**](http://johnkerl.org/miller-releases/miller-5.3.0/doc/reference-verbs.html#count-similar) verb lets you compute cluster sizes by cluster labels. * While Miller DSL arithmetic gracefully overflows from 64-integer to @@ -14,7 +14,7 @@ double-precision float (see also are now the **integer-preserving arithmetic operators** `.+` `.-` `.*` `./` `.//` for those times when you want integer overflow. -* There is a new [**bitcount**](http://johnkerl.org/miller-releases/miller-5.2.0/doc/reference-dsl.html#bitcount) function: for example, `echo x=0xf0000206 | mlr put '$y=bitcount($x)'` produces `x=0xf0000206,y=7`. +* There is a new [**bitcount**](http://johnkerl.org/miller-releases/miller-5.3.0/doc/reference-dsl.html#bitcount) function: for example, `echo x=0xf0000206 | mlr put '$y=bitcount($x)'` produces `x=0xf0000206,y=7`. * [**Issue 158**](https://github.com/johnkerl/miller/issues/158): `mlr -T` is an alias for `--nidx --fs tab`, and `mlr -t` is an alias for `mlr @@ -25,10 +25,10 @@ an alias for `--nidx --fs tab`, and `mlr -t` is an alias for `mlr ## Documentation: * As noted -[**here**](http://johnkerl.org/miller-releases/miller-5.2.0/doc/reference-dsl.html#A_note_on_the_complexity_of_Miller’s_expression_language), while Miller has its own DSL there will always be things better expressible in a general-purpose language. The new page -[**Sharing data with other languages**](http://johnkerl.org/miller-releases/miller-5.2.0/doc/data-sharing.html) shows how to seamlessly share data back and forth between Miller, Ruby, and Python. +[**here**](http://johnkerl.org/miller-releases/miller-5.3.0/doc/reference-dsl.html#A_note_on_the_complexity_of_Miller’s_expression_language), while Miller has its own DSL there will always be things better expressible in a general-purpose language. The new page +[**Sharing data with other languages**](http://johnkerl.org/miller-releases/miller-5.3.0/doc/data-sharing.html) shows how to seamlessly share data back and forth between Miller, Ruby, and Python. -* [**SQL-input examples**](http://johnkerl.org/miller-releases/miller-5.2.0/doc/10-min.html#SQL-input_examples) contains detailed information the interplay between Miller and SQL. +* [**SQL-input examples**](http://johnkerl.org/miller-releases/miller-5.3.0/doc/10-min.html#SQL-input_examples) contains detailed information the interplay between Miller and SQL. * [**Issue 150**](https://github.com/johnkerl/miller/issues/150) raised a question about suppressing numeric conversion. This resulted in a new FAQ entry diff --git a/c/todo.txt b/c/todo.txt index 67f9390f3..51f1506b5 100644 --- a/c/todo.txt +++ b/c/todo.txt @@ -20,6 +20,7 @@ BUGFIXES ! --skip-comments ! count-similar -> ut +* sql in/outs -> own page? ================================================================ COMMENTS: diff --git a/doc/content-for-index.html b/doc/content-for-index.html index 90e295f49..995d2814d 100644 --- a/doc/content-for-index.html +++ b/doc/content-for-index.html @@ -30,9 +30,11 @@ streaming-data feature and single-pass algorithms enable you to reduce very large data sets.
Miller complements SQL databases: you can slice, dice, and -reformat data on the client side on its way into or out of a database. You can -also reap some of the benefits of databases for quick, setup-free one-off tasks -when you just need to query some data in disk files in a hurry. +reformat data on the client side on its way into or out of a database. +(Examples here and here). You can also reap some of the +benefits of databases for quick, setup-free one-off tasks when you just need to +query some data in disk files in a hurry. Miller also goes beyond the classic Unix tools by stepping fully into our modern, no-SQL world: its essential record-heterogeneity property allows diff --git a/doc/index.html b/doc/index.html index 70341e987..6f88a570f 100644 --- a/doc/index.html +++ b/doc/index.html @@ -218,9 +218,11 @@ streaming-data feature and single-pass algorithms enable you to reduce very large data sets. Miller complements SQL databases: you can slice, dice, and -reformat data on the client side on its way into or out of a database. You can -also reap some of the benefits of databases for quick, setup-free one-off tasks -when you just need to query some data in disk files in a hurry. +reformat data on the client side on its way into or out of a database. +(Examples here and here). You can also reap some of the +benefits of databases for quick, setup-free one-off tasks when you just need to +query some data in disk files in a hurry. Miller also goes beyond the classic Unix tools by stepping fully into our modern, no-SQL world: its essential record-heterogeneity property allows