Version 1.2.0

This commit is contained in:
Rodrigo Arias 2023-04-24 12:29:46 +02:00
parent fb435842b2
commit 44d120d7a8
3 changed files with 4 additions and 3 deletions

View File

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

View File

@ -4,13 +4,14 @@
#include "emu_args.h"
#include "common.h"
#include "ovni.h"
#include "path.h"
#include <unistd.h>
#include <string.h>
#include <stdlib.h>
static char progname[] = "ovniemu";
static char version[] = "1.0.0";
static char version[] = OVNI_LIB_VERSION;
static void
usage(void)

View File

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