Set version to 1.0

FossilOrigin-Name: cad44bcb35658c850ff45eaa6cdd02009b72f36110fb3c2c7f6633fe8d995ed1
This commit is contained in:
Jonathan Schleifer 2024-08-11 12:05:32 +00:00
parent 08b99abf63
commit bc8b24895f
2 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,5 @@
project('ObjSQLite3', 'objc', project('ObjSQLite3', 'objc',
version: '0.1', version: '1.0',
meson_version: '>= 1.5.0', meson_version: '>= 1.5.0',
default_options: { default_options: {
'warning_level': '3', 'warning_level': '3',

View file

@ -12,7 +12,7 @@ objsqlite3 = library('objsqlite3',
include_directories: incdir, include_directories: incdir,
objc_args: ['-DSL3_PUBLIC_IVARS'], objc_args: ['-DSL3_PUBLIC_IVARS'],
dependencies: [objfw_dep, sqlite3_dep], dependencies: [objfw_dep, sqlite3_dep],
soversion: '0.0', soversion: '1.0.0',
install: true) install: true)
headers = ['ObjSQLite3.h'] headers = ['ObjSQLite3.h']