Adding upstream version 1.8.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
86acbfc29e
commit
2e3cdb015d
874 changed files with 1460 additions and 897 deletions
|
@ -8,7 +8,7 @@
|
|||
project(
|
||||
'libnvme', ['c'],
|
||||
meson_version: '>= 0.50.0',
|
||||
version: '1.7.1',
|
||||
version: '1.8',
|
||||
license: 'LGPL-2.1-or-later',
|
||||
default_options: [
|
||||
'c_std=gnu99',
|
||||
|
@ -22,9 +22,9 @@ project(
|
|||
|
||||
vstr = meson.project_version().split('-rc')[0]
|
||||
vid = vstr.split('.')
|
||||
library_version = '.'.join(vid[0], vid[1])
|
||||
library_version = '.'.join([vid[0], vid[1]])
|
||||
if vid.length() == 3
|
||||
library_version = '.'.join(library_version, vid[2])
|
||||
library_version = '.'.join([library_version, vid[2]])
|
||||
else
|
||||
library_version = library_version + '.0'
|
||||
endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue