Dmitry Puzikov | 1b87e60 | 2019-04-15 09:17:57 +0200 | [diff] [blame] | 1 | # Versioning variables |
| 2 | # Note that these variables cannot be structured (e.g. : version.release or version.snapshot etc... ) |
| 3 | # because they are used in Jenkins, whose plug-in doesn't support |
| 4 | |
liamfallon | 6db75b9 | 2023-10-18 09:07:14 +0100 | [diff] [blame] | 5 | major=3 |
liamfallon | ed4f940 | 2023-11-14 16:12:15 +0100 | [diff] [blame] | 6 | minor=1 |
saul.gill | 0d7c828 | 2024-04-25 11:42:08 +0100 | [diff] [blame] | 7 | patch=3 |
Dmitry Puzikov | 1b87e60 | 2019-04-15 09:17:57 +0200 | [diff] [blame] | 8 | |
| 9 | base_version=${major}.${minor}.${patch} |
| 10 | |
| 11 | # Release must be completed with git revision # in Jenkins |
| 12 | release_version=${base_version} |
| 13 | snapshot_version=${base_version}-SNAPSHOT |