diff --git a/include/ovni.h b/include/ovni.h index 6b7dbf2..b1a123b 100644 --- a/include/ovni.h +++ b/include/ovni.h @@ -34,7 +34,7 @@ typedef struct json_value_t JSON_Value; #define OVNI_STREAM_EXT ".obs" /* Follow https://semver.org rules for versioning */ -#define OVNI_LIB_VERSION "1.1.0" +#define OVNI_LIB_VERSION "1.2.0" /* ----------------------- common ------------------------ */ diff --git a/src/emu/emu_args.c b/src/emu/emu_args.c index 6eb0583..8e4a050 100644 --- a/src/emu/emu_args.c +++ b/src/emu/emu_args.c @@ -4,13 +4,14 @@ #include "emu_args.h" #include "common.h" +#include "ovni.h" #include "path.h" #include #include #include static char progname[] = "ovniemu"; -static char version[] = "1.0.0"; +static char version[] = OVNI_LIB_VERSION; static void usage(void) diff --git a/src/rt/CMakeLists.txt b/src/rt/CMakeLists.txt index ee07afb..367cd2c 100644 --- a/src/rt/CMakeLists.txt +++ b/src/rt/CMakeLists.txt @@ -7,7 +7,7 @@ add_library(ovni SHARED ovni.c) target_link_libraries(ovni parson common) target_include_directories(ovni PUBLIC "${CMAKE_SOURCE_DIR}/include") set_target_properties(ovni PROPERTIES - VERSION 1.1.0 + VERSION 1.2.0 SOVERSION 1) add_library(ovni-static STATIC ovni.c)