Skip to content

Commit bce45ec

Browse files
committed
Update comment
Signed-off-by: Darby Johnston <[email protected]>
1 parent f7cbab4 commit bce45ec

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

CMakeLists.txt

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -130,14 +130,16 @@ endif()
130130
#
131131
# OTIO currently designates the minor version number for breaking changes,
132132
# e.g. v0.15, v0.16.0, v0.17.0, accordingly the SO version will be incremented
133-
# to match. So for example, the following OTIO versions would map to these
134-
# ABI versions:
133+
# to match. SO version must be monotically increasing, so the ABI version
134+
# should be computed as: major * 100 + revision. The third digit will never
135+
# implicate an ABI version change. So for example, the following OTIO versions
136+
# would map to these ABI versions:
135137
#
136-
# * v0.18.0 - 0.18
137-
# * v0.19.0 - 0.19
138-
# * v0.19.1 - 0.19 # No ABI changes with minor version changes
139-
# * v1.0.0 - 1.0
140-
# * v1.1.0 - 1.1
138+
# * v0.18.0 - 18
139+
# * v0.19.0 - 19
140+
# * v0.19.1 - 19 # No ABI changes with minor version changes
141+
# * v1.0.0 - 100
142+
# * v1.1.0 - 101
141143
#
142144
math(EXPR OTIO_SOVERSION "${OTIO_VERSION_MAJOR} * 100 + ${OTIO_VERSION_MINOR}")
143145

0 commit comments

Comments
 (0)