diff --git a/CMakeLists.txt b/CMakeLists.txt index f61645d2..48088dcf 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ include(cmake/prelude.cmake) set(CMAKE_CXX_STANDARD 14) project( lnav - VERSION 0.10.2 + VERSION 0.11.0 DESCRIPTION "An advanced log file viewer for the small-scale." HOMEPAGE_URL "https://lnav.org/" LANGUAGES CXX C diff --git a/NEWS b/NEWS index c76b54ec..41b3a1a6 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,4 @@ -lnav v0.10.2: +lnav v0.11.0: Features: * Redesigned the top status area to allow for user-specified messages and added a second line that displays an interactive diff --git a/conanfile.py b/conanfile.py index dcf7896f..240305fd 100644 --- a/conanfile.py +++ b/conanfile.py @@ -4,7 +4,7 @@ from conan.tools.cmake import CMake, CMakeToolchain, CMakeDeps class LnavConan(ConanFile): name = "lnav" - version = "0.10.2" + version = "0.11.0" homepage = "https://lnav.org" url = "https://github.com/tstack/lnav.git" license = "BSD-2-Clause" diff --git a/configure.ac b/configure.ac index f2069957..a9716fe8 100644 --- a/configure.ac +++ b/configure.ac @@ -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_MACRO_DIR([m4]) AM_INIT_AUTOMAKE([foreign subdir-objects]) diff --git a/docs/_posts/2022-05-01-regex101-integration.md b/docs/_posts/2022-05-01-regex101-integration.md index 14a9f9e0..8354b849 100644 --- a/docs/_posts/2022-05-01-regex101-integration.md +++ b/docs/_posts/2022-05-01-regex101-integration.md @@ -4,7 +4,7 @@ title: Integration with 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 error-prone. To help streamline the process, an integration with regex101.com diff --git a/docs/source/cli.rst b/docs/source/cli.rst index 5dca5423..565e54fa 100644 --- a/docs/source/cli.rst +++ b/docs/source/cli.rst @@ -93,7 +93,7 @@ Options 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 diff --git a/docs/source/conf.py b/docs/source/conf.py index c184076f..cc341876 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -254,9 +254,9 @@ copyright = u'2022, Tim Stack' # built documents. # # The short X.Y version. -version = '0.10' +version = '0.11' # 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 # for a list of supported languages. diff --git a/docs/source/config.rst b/docs/source/config.rst index 18d099f9..5294e52e 100644 --- a/docs/source/config.rst +++ b/docs/source/config.rst @@ -208,7 +208,7 @@ The handling of logs is largely determined by the :ref:`log file formats`, this section covers options that are not 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 diff --git a/docs/source/events.rst b/docs/source/events.rst index 62fd1782..54cecdfd 100644 --- a/docs/source/events.rst +++ b/docs/source/events.rst @@ -1,6 +1,6 @@ .. _Events: -Events (v0.10.2+) +Events (v0.11.0+) ================= The events mechanism allows **lnav** to be automated based on events that diff --git a/docs/source/formats.rst b/docs/source/formats.rst index e00dfb44..11b825d7 100644 --- a/docs/source/formats.rst +++ b/docs/source/formats.rst @@ -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 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 diff --git a/release/Makefile b/release/Makefile index d390def8..bcb40b00 100644 --- a/release/Makefile +++ b/release/Makefile @@ -1,5 +1,5 @@ -VERSION=0.10.2 +VERSION=0.11.0 SRC_VERSION=master @@ -79,7 +79,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.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: cd vagrant-static && vagrant destroy -f