mirror of
https://github.com/libgit2/libgit2.git
synced 2026-06-22 06:26:26 +00:00
scripts: adjust expected SOVERSION for v0.28 branch
The v0.28 branch still uses an old SOVERSION style which includes the minor version, only. Adjust the release script to reflect that.
This commit is contained in:
@@ -37,7 +37,7 @@ def verify_version(version):
|
||||
'VER_MINOR': [ str(version.minor), None ],
|
||||
'VER_REVISION': [ str(version.revision), None ],
|
||||
'VER_PATCH': [ '0', None ],
|
||||
'SOVERSION': [ '"{}.{}"'.format(version.major, version.minor), None ],
|
||||
'SOVERSION': [ '{}'.format(version.minor), None ],
|
||||
}
|
||||
|
||||
with open('include/git2/version.h') as f:
|
||||
|
||||
Reference in New Issue
Block a user