From f27745aca19465387fff0eb57c10c6bcae79db3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?b=CA=B0edoh=E2=82=82=20sw=C3=A9?= Date: Tue, 8 Apr 2025 00:21:31 +0500 Subject: [PATCH] Bump version. --- include/with99.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/with99.h b/include/with99.h index a669f37..609b118 100644 --- a/include/with99.h +++ b/include/with99.h @@ -13,8 +13,8 @@ #endif #define WITH99_MAJOR 0 -#define WITH99_MINOR 1 -#define WITH99_PATCH 1 +#define WITH99_MINOR 2 +#define WITH99_PATCH 0 #define WITH99_VERSION_COMPATIBLE(x, y, z) (WITH99_MAJOR == (x) && ((WITH99_MINOR == (y) && WITH99_PATCH >= (z)) || (WITH99_MINOR > (y)))) #define WITH99_VERSION_EQ(x, y, z) (WITH99_MAJOR == (x) && WITH99_MINOR == (y) && WITH99_PATCH == (z))