Generate versioned shared library

The ipmid plugins require the versioned libraries, add the so version so
they fit the plugin usage.

Signed-off-by: Lei YU <yulei.sh@bytedance.com>
Change-Id: Ieae2333ab31bee9d49b06387d17f2c4a7928acbc
diff --git a/src/meson.build b/src/meson.build
index 2a6010a..5f99abd 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -1,5 +1,7 @@
 src_inc = include_directories('.')
 
+so_version = '0.1.0'
+
 shared_library(
   'inspur-ipmi-oem',
   'inspur_oem.cpp',
@@ -8,6 +10,7 @@
     phosphor_logging,
     libipmid,
   ],
+  version: so_version,
   install: true,
   install_dir: get_option('libdir') / 'ipmid-providers'
   )