[release] bump version number

pull/1205/head
Tim Stack 9 months ago
parent 463853efd9
commit 6edc9268d7

@ -5,7 +5,7 @@ include(cmake/prelude.cmake)
set(CMAKE_CXX_STANDARD 14)
project(
lnav
VERSION 0.11.2
VERSION 0.12.0
DESCRIPTION "An advanced log file viewer for the small-scale."
HOMEPAGE_URL "https://lnav.org/"
LANGUAGES CXX C
@ -34,7 +34,7 @@ set(lnav_LIBS
readline::readline
LibArchive::LibArchive
ZLIB::ZLIB
)
)
add_subdirectory(src)
# add_subdirectory(test)

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

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

@ -256,9 +256,9 @@ copyright = u'2023, Tim Stack'
# built documents.
#
# The short X.Y version.
version = '0.11'
version = '0.12'
# The full version, including alpha/beta/rc tags.
release = '0.11.2'
release = '0.12.0'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

@ -135,6 +135,7 @@ command can be used to the change the theme:
The builtin themes are:
`default <https://github.com/tstack/lnav/blob/master/src/themes/default-theme.json>`_,
`dracula <https://github.com/tstack/lnav/blob/master/src/themes/dracula.json>`_,
`eldar <https://github.com/tstack/lnav/blob/master/src/themes/eldar.json>`_,
`grayscale <https://github.com/tstack/lnav/blob/master/src/themes/grayscale.json>`_,
`monocai <https://github.com/tstack/lnav/blob/master/src/themes/monocai.json>`_,

@ -1,5 +1,5 @@
VERSION=0.11.2
VERSION=0.12.0
VERSION_TAG=v$(VERSION)
@ -95,7 +95,7 @@ release: osx-package musl-package release-NEWS.md
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.11.2-1.x86_64.rpm
env LANG=UTF-8 package_cloud push tstack/lnav/el/5 outbox/lnav-0.12.0-1.x86_64.rpm
clean:
cd vagrant-static && vagrant destroy -f

@ -3,8 +3,8 @@
# '|/path/to/this/file' in lnav to execute this file and
# restore the state of the session.
;SELECT raise_error('This session export was made with a newer version of lnav, please upgrade to ' || '0.11.2' || ' or later')
WHERE lnav_version() < '0.11.2' COLLATE naturalcase
;SELECT raise_error('This session export was made with a newer version of lnav, please upgrade to ' || '0.12.0' || ' or later')
WHERE lnav_version() < '0.12.0' COLLATE naturalcase
# The files loaded into the session were:

@ -3,8 +3,8 @@
# '|/path/to/this/file' in lnav to execute this file and
# restore the state of the session.
;SELECT raise_error('This session export was made with a newer version of lnav, please upgrade to ' || '0.11.2' || ' or later')
WHERE lnav_version() < '0.11.2' COLLATE naturalcase
;SELECT raise_error('This session export was made with a newer version of lnav, please upgrade to ' || '0.12.0' || ' or later')
WHERE lnav_version() < '0.12.0' COLLATE naturalcase
# The files loaded into the session were:

Loading…
Cancel
Save