mirror of
https://github.com/searxng/searxng
synced 2024-01-01 19:24:07 +01:00
16 lines
245 B
Python
16 lines
245 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
# lint: pylint
|
|
|
|
"""Version of searx
|
|
|
|
"""
|
|
|
|
VERSION_MAJOR = 1
|
|
VERSION_MINOR = 1
|
|
VERSION_BUILD = "0-pre"
|
|
|
|
VERSION_STRING = "{0}.{1}.{2}".format(
|
|
VERSION_MAJOR,
|
|
VERSION_MINOR,
|
|
VERSION_BUILD
|
|
)
|