[version] change next version to v0.11.0 since there are a bunch of changes

pull/824/merge
Timothy Stack 2 years ago
parent 7b83b87e57
commit 6224ed2ce3

@ -5,7 +5,7 @@ include(cmake/prelude.cmake)
set(CMAKE_CXX_STANDARD 14) set(CMAKE_CXX_STANDARD 14)
project( project(
lnav lnav
VERSION 0.10.2 VERSION 0.11.0
DESCRIPTION "An advanced log file viewer for the small-scale." DESCRIPTION "An advanced log file viewer for the small-scale."
HOMEPAGE_URL "https://lnav.org/" HOMEPAGE_URL "https://lnav.org/"
LANGUAGES CXX C LANGUAGES CXX C

@ -1,4 +1,4 @@
lnav v0.10.2: lnav v0.11.0:
Features: Features:
* Redesigned the top status area to allow for user-specified * Redesigned the top status area to allow for user-specified
messages and added a second line that displays an interactive messages and added a second line that displays an interactive

@ -4,7 +4,7 @@ from conan.tools.cmake import CMake, CMakeToolchain, CMakeDeps
class LnavConan(ConanFile): class LnavConan(ConanFile):
name = "lnav" name = "lnav"
version = "0.10.2" version = "0.11.0"
homepage = "https://lnav.org" homepage = "https://lnav.org"
url = "https://github.com/tstack/lnav.git" url = "https://github.com/tstack/lnav.git"
license = "BSD-2-Clause" license = "BSD-2-Clause"

@ -1,4 +1,4 @@
AC_INIT([lnav],[0.10.2],[lnav@googlegroups.com],[lnav],[http://lnav.org]) AC_INIT([lnav],[0.11.0],[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])

@ -4,7 +4,7 @@ title: Integration with regex101.com
excerpt: Create/edit format files using regex101.com excerpt: Create/edit format files using regex101.com
--- ---
*(This change will be in the upcoming v0.10.2 release)* *(This change will be in the upcoming v0.11.0 release)*
Creating and updating format files for **lnav** can be a bit tedious and Creating and updating format files for **lnav** can be a bit tedious and
error-prone. To help streamline the process, an integration with regex101.com error-prone. To help streamline the process, an integration with regex101.com

@ -93,7 +93,7 @@ Options
Do not print the log messages after executing all of the commands. Do not print the log messages after executing all of the commands.
Management Mode (v0.10.2+) Management Mode (v0.11.0+)
-------------------------- --------------------------
The management CLI mode provides functionality for query **lnav**'s log The management CLI mode provides functionality for query **lnav**'s log

@ -254,9 +254,9 @@ copyright = u'2022, Tim Stack'
# built documents. # built documents.
# #
# The short X.Y version. # The short X.Y version.
version = '0.10' version = '0.11'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = '0.10.2' release = '0.11.0'
# 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.

@ -208,7 +208,7 @@ The handling of logs is largely determined by the
:ref:`log file formats<log_formats>`, this section covers options that are not :ref:`log file formats<log_formats>`, this section covers options that are not
specific to a particular format. specific to a particular format.
Watch Expressions (v0.10.2+) Watch Expressions (v0.11.0+)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Watch expressions can be used to fire an event when a log message matches a Watch expressions can be used to fire an event when a log message matches a

@ -1,6 +1,6 @@
.. _Events: .. _Events:
Events (v0.10.2+) Events (v0.11.0+)
================= =================
The events mechanism allows **lnav** to be automated based on events that The events mechanism allows **lnav** to be automated based on events that

@ -55,7 +55,7 @@ own formats or if you need to modify existing ones. Format directories can
also contain '.sql' and '.lnav' script files that can be used automate log file also contain '.sql' and '.lnav' script files that can be used automate log file
analysis. analysis.
Creating a Format Using Regex101.com (v0.10.2+) Creating a Format Using Regex101.com (v0.11.0+)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
For plain-text log files, the easiest way to create a log format definition is For plain-text log files, the easiest way to create a log format definition is

@ -1,5 +1,5 @@
VERSION=0.10.2 VERSION=0.11.0
SRC_VERSION=master SRC_VERSION=master
@ -79,7 +79,7 @@ release: osx-package musl-package
push: push:
env LANG=UTF-8 package_cloud push tstack/lnav/ubuntu/lucid outbox/lnav*.deb 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.10.2-1.x86_64.rpm env LANG=UTF-8 package_cloud push tstack/lnav/el/5 outbox/lnav-0.11.0-1.x86_64.rpm
clean: clean:
cd vagrant-static && vagrant destroy -f cd vagrant-static && vagrant destroy -f

Loading…
Cancel
Save