Skip to content

Latest commit

 

History

History
68 lines (67 loc) · 2.28 KB

VERSION.cmake

File metadata and controls

68 lines (67 loc) · 2.28 KB
 
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# ==================================================
# Versioning
# ==========
#
# MAJOR Major number for this branch.
#
# MINOR The most recent interface number this
# library implements.
#
# COMPATMINOR The latest binary compatible minor number
# this library implements.
#
# PATCH The implementation number of the current interface.
#
#
# - The package VERSION will be MAJOR.MINOR.PATCH.
#
# - Libtool's -version-info will be derived from MAJOR, MINOR, PATCH
# and COMPATMINOR (see configure.ac).
#
# - Changing MAJOR always breaks binary compatibility.
#
# - Changing MINOR doesn't break binary compatibility by default.
# Only if COMPATMINOR is changed as well.
#
#
# 1) After branching from TRUNK increment TRUNKs MAJOR and
# start with version `MAJOR.0.0' and also set COMPATMINOR to 0.
#
# 2) Update the version information only immediately before a public release
# of your software. More frequent updates are unnecessary, and only guarantee
# that the current interface number gets larger faster.
#
# 3) If the library source code has changed at all since the last update,
# then increment PATCH.
#
# 4) If any interfaces have been added, removed, or changed since the last
# update, increment MINOR, and set PATCH to 0.
#
# 5) If any interfaces have been added since the last public release, then
# leave COMPATMINOR unchanged. (binary compatible change)
#
# 6) If any interfaces have been removed since the last public release, then
# set COMPATMINOR to MINOR. (binary incompatible change)
# ==================================================
#=======
# - 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 (COMPATMINOR)"
# - Commit changes and version files together in a separate
# commit using -m 'changes MAJOR.MINOR.PATCH (COMPATMINOR)'
# - 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.
#
Jan 27, 2015
Jan 27, 2015
61
62
63
SET(LIBZYPP_MAJOR "14")
SET(LIBZYPP_COMPATMINOR "30")
SET(LIBZYPP_MINOR "35")
64
65
SET(LIBZYPP_PATCH "0")
#
Jan 27, 2015
Jan 27, 2015
66
# LAST RELEASED: 14.35.0 (30)
67
68
# (The number in parenthesis is LIBZYPP_COMPATMINOR)
#=======