1
0
Fork 0

Merging upstream version 1.8.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-16 10:45:43 +01:00
parent 857e875fe5
commit 67e5308a54
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
874 changed files with 1460 additions and 897 deletions

View file

@ -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