[release] change version to v0.10.0 since there's a lot of stuff and some nits

pull/884/head
Timothy Stack 3 years ago
parent 0c5dc3840f
commit 4b6fb5ff18

@ -18,7 +18,7 @@ HunterGate(
set(CMAKE_CXX_STANDARD 14)
project(lnav
VERSION 0.9.1)
VERSION 0.10.0)
# include(cmake/CodeCoverage.cmake)
# append_coverage_compiler_flags()

@ -1,4 +1,4 @@
lnav v0.9.1:
lnav v0.10.0:
Features:
* Files on remote machines can be viewed/tailed if they are accessible
via SSH. The syntax for specifying the host and path is similar to

@ -1,4 +1,4 @@
AC_INIT([lnav],[0.9.1],[lnav@googlegroups.com],[lnav],[http://lnav.org])
AC_INIT([lnav],[0.10.0],[lnav@googlegroups.com],[lnav],[http://lnav.org])
AC_CONFIG_SRCDIR([src/lnav.cc])
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE([foreign subdir-objects])

@ -254,9 +254,9 @@ copyright = u'2021, Tim Stack'
# built documents.
#
# The short X.Y version.
version = '0.9'
version = '0.10'
# The full version, including alpha/beta/rc tags.
release = '0.9.1'
release = '0.10.0'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

@ -30,7 +30,7 @@ supported:
the file.
* The
`W3C Extend Log File Format <https://www.w3.org/TR/WD-logfile.html>`_
is supported in lnav versions v0.9.1+. The W3C log format is
is supported in lnav versions v0.10.0+. The W3C log format is
self-describing, so **lnav** will read the header to determine the shape of
the file.

@ -1,5 +1,5 @@
VERSION=0.9.1
VERSION=0.10.0
SRC_VERSION=master
@ -70,7 +70,7 @@ release: osx-package musl-package
push:
env LANG=UTF-8 package_cloud push tstack/lnav/ubuntu/lucid outbox/lnav*.deb
env LANG=UTF-8 package_cloud push tstack/lnav/el/5 outbox/lnav-0.9.1-1.x86_64.rpm
env LANG=UTF-8 package_cloud push tstack/lnav/el/5 outbox/lnav-0.10.0-1.x86_64.rpm
clean:
cd vagrant-static && vagrant destroy -f

@ -46,8 +46,8 @@ if test x"${OS}" != x"FreeBSD"; then
TARGET_FILE='/vagrant/lnav-musl.zip'
../lnav/configure \
--with-libarchive=${FAKE_ROOT} \
CFLAGS='-static -g1 -no-pie -O2' \
CXXFLAGS='-static -g1 -U__unused -no-pie -O2' \
CFLAGS='-static -g1 -gz=zlib -no-pie -O2' \
CXXFLAGS='-static -g1 -gz=zlib -U__unused -no-pie -O2' \
LDFLAGS="-L${FAKE_ROOT}/lib" \
CPPFLAGS="-I${FAKE_ROOT}/include" \
LIBS="-L${FAKE_ROOT}/lib -lexecinfo -lssh2 -llzma -lssl -lcrypto -lz" \

@ -39,7 +39,7 @@
#include <limits.h>
#include <poll.h>
#include <sys/stat.h>
#include <sys/fcntl.h>
#include <fcntl.h>
#include <unistd.h>
#include <sys/utsname.h>
#include <ctype.h>

@ -271,7 +271,7 @@ void layout_views()
lnav_data.ld_mode == LNM_SEARCH_FILES) &&
!preview_status_open &&
!doc_open;
int filter_height = filters_open ? 3 : 0;
int filter_height = filters_open ? 5 : 0;
int bottom_height =
(doc_open ? 1 : 0)

Loading…
Cancel
Save