From 8a91c96bedd4f24c69e8a9109b5749d35b253543 Mon Sep 17 00:00:00 2001 From: Timothy Stack Date: Wed, 8 Apr 2015 02:26:25 -0700 Subject: [PATCH] [build] bump version to 0.7.3 since we will release soon --- NEWS | 2 ++ configure.ac | 2 +- docs/source/conf.py | 2 +- release/Makefile | 2 +- test/multiline.lnav | 6 +++++- test/test_cmds.sh | 3 +-- 6 files changed, 11 insertions(+), 6 deletions(-) diff --git a/NEWS b/NEWS index c1a706b6..6d88cef3 100644 --- a/NEWS +++ b/NEWS @@ -35,6 +35,8 @@ lnav v0.7.3: automatically determined so that more specific formats are tested before more general ones. The order is determined on startup based on how each format matches each other formats sample lines. + * Command files (i.e. those executed via the '-f' flag) now support + commands/queries that span more than one line. lnav v0.7.2: * Added log formats for vdsm, openstack, and the vmkernel. diff --git a/configure.ac b/configure.ac index e1854ee7..8820e50c 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([lnav],[0.7.2],[lnav@googlegroups.com],[lnav],[http://lnav.org]) +AC_INIT([lnav],[0.7.3],[lnav@googlegroups.com],[lnav],[http://lnav.org]) AC_CONFIG_SRCDIR([src/lnav.cc]) AC_CONFIG_MACRO_DIR([m4]) AM_INIT_AUTOMAKE([foreign subdir-objects]) diff --git a/docs/source/conf.py b/docs/source/conf.py index 58545c6c..5d81902c 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -58,7 +58,7 @@ copyright = u'2014, Tim Stack' # The short X.Y version. version = '0.7' # The full version, including alpha/beta/rc tags. -release = '0.7.2' +release = '0.7.3' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/release/Makefile b/release/Makefile index 5fea7b8f..cfecc4e6 100644 --- a/release/Makefile +++ b/release/Makefile @@ -1,5 +1,5 @@ -VERSION=0.7.2 +VERSION=0.7.3 outbox: mkdir -p $@ diff --git a/test/multiline.lnav b/test/multiline.lnav index 4f094828..3ee2135c 100644 --- a/test/multiline.lnav +++ b/test/multiline.lnav @@ -7,4 +7,8 @@ ;INSERT INTO foobar VALUES (1, 'Jules'); -;SELECT * FROM foobar; +;INSERT INTO environ + SELECT "msg", "Hello: " || group_concat(name, ", ") FROM foobar; + +:pipe-line-to + echo $msg diff --git a/test/test_cmds.sh b/test/test_cmds.sh index 64cf9b2e..4a246126 100644 --- a/test/test_cmds.sh +++ b/test/test_cmds.sh @@ -521,6 +521,5 @@ run_test ${lnav_test} -n \ ${test_dir}/logfile_access_log.0 check_output "multiline commands do not work?" <