diff --git a/CMakeLists.txt b/CMakeLists.txt index b56fb0d..d3f6e10 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.14) project(libsee - VERSION 1.0.2 + VERSION 1.1.0 DESCRIPTION "See where you use LibC the most. Trace calls failing tests. Then - roast!") # Set C standard diff --git a/VERSION b/VERSION index 6d7de6e..9084fa2 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.0.2 +1.1.0 diff --git a/libsee.c b/libsee.c index cae23b9..54cd25a 100644 --- a/libsee.c +++ b/libsee.c @@ -9,8 +9,8 @@ * @date March 4, 2024 */ #define LIBSEE_VERSION_MAJOR 1 -#define LIBSEE_VERSION_MINOR 0 -#define LIBSEE_VERSION_PATCH 2 +#define LIBSEE_VERSION_MINOR 1 +#define LIBSEE_VERSION_PATCH 0 #if !defined(LIBSEE_MAX_THREADS) || LIBSEE_MAX_THREADS <= 0 #define LIBSEE_MAX_THREADS 1024