Coverage for lib/version.py: 100%
4 statements
« prev ^ index » next coverage.py v7.10.1, created at 2025-07-28 07:25 +0000
« prev ^ index » next coverage.py v7.10.1, created at 2025-07-28 07:25 +0000
1#!/usr/bin/python3
2# -*- coding: utf-8 -*-
4# Hermes : Change Data Capture (CDC) tool from any source(s) to any target
5# Copyright (C) 2024, 2025 INSA Strasbourg
6#
7# This file is part of Hermes.
8#
9# Hermes is free software: you can redistribute it and/or modify
10# it under the terms of the GNU General Public License as published by
11# the Free Software Foundation, either version 3 of the License, or
12# (at your option) any later version.
13#
14# Hermes is distributed in the hope that it will be useful,
15# but WITHOUT ANY WARRANTY; without even the implied warranty of
16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17# GNU General Public License for more details.
18#
19# You should have received a copy of the GNU General Public License
20# along with Hermes. If not, see <https://www.gnu.org/licenses/>.
22HERMES_VERSION = "1.0.6"
23"""Curent app version"""
25HERMES_VERSIONS = [
26 "1.0.0-alpha.1",
27 "1.0.0-alpha.2",
28 "1.0.0-alpha.3",
29 "1.0.0-alpha.4",
30 "1.0.0-alpha.5",
31 "1.0.0-alpha.6",
32 "1.0.0-alpha.7",
33 "1.0.0-alpha.8",
34 "1.0.0",
35 "1.0.1",
36 "1.0.2",
37 "1.0.3",
38 "1.0.4",
39 "1.0.5",
40 "1.0.6",
41]
42"""History of app versions, from oldest to newest"""