diff --git a/docs/src/manpage.md b/docs/src/manpage.md index 4369744a7..31717b833 100644 --- a/docs/src/manpage.md +++ b/docs/src/manpage.md @@ -52,7 +52,7 @@ This is simply a copy of what you should see on running `man mlr` at a command p insertion-ordered hash map. This encompasses a variety of data formats, including but not limited to the familiar CSV, TSV, and JSON. (Miller can handle positionally-indexed data as a special case.) This - manpage documents mlr 6.19.0. + manpage documents mlr 6.19.0-dev. 1mEXAMPLES0m mlr --icsv --opprint cat example.csv diff --git a/docs/src/manpage.txt b/docs/src/manpage.txt index aed42cd4d..4b4d56236 100644 --- a/docs/src/manpage.txt +++ b/docs/src/manpage.txt @@ -31,7 +31,7 @@ insertion-ordered hash map. This encompasses a variety of data formats, including but not limited to the familiar CSV, TSV, and JSON. (Miller can handle positionally-indexed data as a special case.) This - manpage documents mlr 6.19.0. + manpage documents mlr 6.19.0-dev. 1mEXAMPLES0m mlr --icsv --opprint cat example.csv diff --git a/docs/src/release-docs.md b/docs/src/release-docs.md index 4c818fe5c..792e9f6b2 100644 --- a/docs/src/release-docs.md +++ b/docs/src/release-docs.md @@ -24,6 +24,8 @@ If your `mlr version` says something like `Miller v5.10.2` or `mlr 6.0.0`, witho | Release | Docs | Release notes | |---------|---------------------------------------------------------------------|---------------| main | [main branch](https://miller.readthedocs.io/en/main) | N/A | +6.19.0 | [Miller 6.19.0](https://miller.readthedocs.io/en/6.19.0) | [Miller 6.19.0: Performance improvements, `--omd-aligned` flag, bugfixes](https://github.com/johnkerl/miller/releases/tag/v6.19.0) | +6.18.1 | [Miller 6.18.1](https://miller.readthedocs.io/en/6.18.1) | [v6.18.1: DKVPX file format; misc. features and bugfixes](https://github.com/johnkerl/miller/releases/tag/v6.18.1) | 6.17.0 | [Miller 6.17.0](https://miller.readthedocs.io/en/6.17.0) | [Miller 6.17.0: YAML and DCF file formats; performance improvements; bugfixes](https://github.com/johnkerl/miller/releases/tag/v6.17.0) | 6.16.0 | [Miller 6.16.0](https://miller.readthedocs.io/en/6.16.0) | [Miller 6.16.0: Snap support via `snap install miller`](https://github.com/johnkerl/miller/releases/tag/v6.16.0) | 6.15.0 | [Miller 6.15.0](https://miller.readthedocs.io/en/6.15.0) | [Miller 6.15.0: Fix double quotes in CSV comments and `mlr -I` mode preservation; `sort -b`](https://github.com/johnkerl/miller/releases/tag/v6.15.0) | diff --git a/man/manpage.txt b/man/manpage.txt index aed42cd4d..4b4d56236 100644 --- a/man/manpage.txt +++ b/man/manpage.txt @@ -31,7 +31,7 @@ insertion-ordered hash map. This encompasses a variety of data formats, including but not limited to the familiar CSV, TSV, and JSON. (Miller can handle positionally-indexed data as a special case.) This - manpage documents mlr 6.19.0. + manpage documents mlr 6.19.0-dev. 1mEXAMPLES0m mlr --icsv --opprint cat example.csv diff --git a/man/mlr.1 b/man/mlr.1 index e7fbd1cbc..afd539e49 100644 --- a/man/mlr.1 +++ b/man/mlr.1 @@ -50,7 +50,7 @@ on integer-indexed fields: if the natural data structure for the latter is the array, then Miller's natural data structure is the insertion-ordered hash map. This encompasses a variety of data formats, including but not limited to the familiar CSV, TSV, and JSON. (Miller can handle positionally-indexed data as -a special case.) This manpage documents mlr 6.19.0. +a special case.) This manpage documents mlr 6.19.0-dev. .SH "EXAMPLES" .sp diff --git a/pkg/version/version.go b/pkg/version/version.go index e052627f0..a998feca6 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -4,4 +4,4 @@ package version // Nominally things like "6.0.0" for a release, then "6.0.0-dev" in between. // This makes it clear that a given build is on the main dev branch, not a // particular snapshot tag. -var STRING string = "6.19.0" +var STRING string = "6.19.0-dev"