[build] bump version to 0.7.3 since we will release soon

This commit is contained in:
Timothy Stack 2015-04-08 02:26:25 -07:00
parent 8944e951a6
commit 8a91c96bed
6 changed files with 11 additions and 6 deletions

2
NEWS
View File

@ -35,6 +35,8 @@ lnav v0.7.3:
automatically determined so that more specific formats are tested automatically determined so that more specific formats are tested
before more general ones. The order is determined on startup based on before more general ones. The order is determined on startup based on
how each format matches each other formats sample lines. 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: lnav v0.7.2:
* Added log formats for vdsm, openstack, and the vmkernel. * Added log formats for vdsm, openstack, and the vmkernel.

View File

@ -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_SRCDIR([src/lnav.cc])
AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE([foreign subdir-objects]) AM_INIT_AUTOMAKE([foreign subdir-objects])

View File

@ -58,7 +58,7 @@ copyright = u'2014, Tim Stack'
# The short X.Y version. # The short X.Y version.
version = '0.7' version = '0.7'
# The full version, including alpha/beta/rc tags. # 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 # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.

View File

@ -1,5 +1,5 @@
VERSION=0.7.2 VERSION=0.7.3
outbox: outbox:
mkdir -p $@ mkdir -p $@

View File

@ -7,4 +7,8 @@
;INSERT INTO foobar VALUES (1, 'Jules'); ;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

View File

@ -521,6 +521,5 @@ run_test ${lnav_test} -n \
${test_dir}/logfile_access_log.0 ${test_dir}/logfile_access_log.0
check_output "multiline commands do not work?" <<EOF check_output "multiline commands do not work?" <<EOF
mykey name Hello: Jules
1 Jules
EOF EOF