forked from openSUSE/zypper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
VERSION.cmake
40 lines (38 loc) · 1.11 KB
/
VERSION.cmake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# ==========
# Versioning
# ==========
#
# VERSION_MAJOR Denotes major milestones.
#
# VERSION_MINOR Denotes feature implementations.
#
# VERSION_PATCH Minor changes and fixes.
#
#
# - The package VERSION will be VERSION_MAJOR.VERSION_MINOR.VERSION_PATCH.
#
# - Update the version information only immediately before a public release
# of your software. More frequent updates are unnecessary.
#
# - If the source code has changed at all since the last update,
# then increment VERSION_PATCH.
#
#=======
# - MOST IMPORTANT:
# - Before you submitt to git:
# - Remember the new version in 'LAST RELEASED:'
# - State the new version in the changes file by adding a line
# "- version MAJOR.MINOR.PATCH"
# - Commit changes and version files together in a separate
# commit using -m 'changes MAJOR.MINOR.PATCH'
# - Tag the above commit with 'MAJOR.MINOR.PATCH' using
# -m "tagging MAJOR.MINOR.PATCH".
#
# - Consider calling ./mkChangelog to assist you.
# See './mkChangelog -h' for help.
#
SET(VERSION_MAJOR "1")
SET(VERSION_MINOR "14")
SET(VERSION_PATCH "43")
# LAST RELEASED: 1.14.43
#=======