mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-28 18:21:52 +00:00
Update version to 5.0.0-alpha
This commit is contained in:
parent
2862d1fb77
commit
5d70fa532e
7 changed files with 10 additions and 14 deletions
|
|
@ -10,10 +10,6 @@ char* alloc_file_name_escaped_for_popen(char* filename) {
|
|||
sb_append_char(psb, '\'');
|
||||
for (char* p = filename; *p; p++) {
|
||||
char c = *p;
|
||||
//if (c == '\'') {
|
||||
//sb_append_char(psb, '\\');
|
||||
//}
|
||||
//sb_append_char(psb, c);
|
||||
if (c == '\'') {
|
||||
sb_append_char(psb, '\'');
|
||||
sb_append_char(psb, '\\');
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef MLRVERS_H
|
||||
#define MLRVERS_H
|
||||
// Manually increment on updates to https://github.com/johnkerl/miller/releases
|
||||
#define MLR_VERSION "v4.5.0-dev"
|
||||
#define MLR_VERSION "v5.0.0-dev"
|
||||
#endif // MLRVERS_H
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
AC_PREREQ([2.60])
|
||||
# Manually increment on updates to https://github.com/johnkerl/miller/releases
|
||||
AC_INIT([mlr],[4.5.0-dev])
|
||||
AC_INIT([mlr],[5.0.0-alpha])
|
||||
AC_CONFIG_SRCDIR([c/mlrmain.c])
|
||||
AC_CONFIG_HEADERS([config.h])
|
||||
AC_CONFIG_AUX_DIR([autotools])
|
||||
|
|
|
|||
|
|
@ -165,7 +165,7 @@ DESCRIPTION
|
|||
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 Miller v4.5.0-dev.
|
||||
manpage documents Miller v5.0.0-dev.
|
||||
|
||||
EXAMPLES
|
||||
COMMAND-LINE SYNTAX
|
||||
|
|
@ -1871,7 +1871,7 @@ SEE ALSO
|
|||
|
||||
|
||||
|
||||
2016-10-19 MILLER(1)
|
||||
2016-10-20 MILLER(1)
|
||||
</pre>
|
||||
</div>
|
||||
<p/>
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ DESCRIPTION
|
|||
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 Miller v4.5.0-dev.
|
||||
manpage documents Miller v5.0.0-dev.
|
||||
|
||||
EXAMPLES
|
||||
COMMAND-LINE SYNTAX
|
||||
|
|
@ -1724,4 +1724,4 @@ SEE ALSO
|
|||
|
||||
|
||||
|
||||
2016-10-19 MILLER(1)
|
||||
2016-10-20 MILLER(1)
|
||||
|
|
|
|||
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: mlr
|
||||
.\" Author: [see the "AUTHOR" section]
|
||||
.\" Generator: ./mkman.rb
|
||||
.\" Date: 2016-10-19
|
||||
.\" Date: 2016-10-20
|
||||
.\" Manual: \ \&
|
||||
.\" Source: \ \&
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "MILLER" "1" "2016-10-19" "\ \&" "\ \&"
|
||||
.TH "MILLER" "1" "2016-10-20" "\ \&" "\ \&"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Portability definitions
|
||||
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
|
@ -38,7 +38,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 Miller v4.5.0-dev.
|
||||
a special case.) This manpage documents Miller v5.0.0-dev.
|
||||
.SH "EXAMPLES"
|
||||
.sp
|
||||
|
||||
|
|
|
|||
|
|
@ -609,7 +609,7 @@ Output of one verb may be chained as input to another using "then", e.g.
|
|||
mlr stats1 -a min,mean,max -f flag,u,v -g color then sort -f color
|
||||
|
||||
For more information please see http://johnkerl.org/miller/doc and/or
|
||||
http://github.com/johnkerl/miller. This is Miller version v4.5.0-dev.
|
||||
http://github.com/johnkerl/miller. This is Miller version v5.0.0-dev.
|
||||
</pre>
|
||||
</div>
|
||||
<p/>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue