From d58bb6b5bf205684bb72bb28407687aacf6ff498 Mon Sep 17 00:00:00 2001 From: Lev Brouk Date: Wed, 17 Apr 2024 09:59:49 -0700 Subject: [PATCH] Updated version to v3.8.2 --- CMakeLists.txt | 2 +- doc/DoxyFile.NATS.Client | 2 +- src/version.h | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 35be31c9d..2714d4dc4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -239,7 +239,7 @@ endif(NATS_BUILD_WITH_TLS) set(NATS_VERSION_MAJOR 3) set(NATS_VERSION_MINOR 8) -set(NATS_VERSION_PATCH 0) +set(NATS_VERSION_PATCH 2) set(NATS_VERSION_SUFFIX "") set(NATS_VERSION_REQUIRED_NUMBER 0x030800) diff --git a/doc/DoxyFile.NATS.Client b/doc/DoxyFile.NATS.Client index 6354a6b60..0616cee72 100644 --- a/doc/DoxyFile.NATS.Client +++ b/doc/DoxyFile.NATS.Client @@ -48,7 +48,7 @@ PROJECT_NAME = NATS C Client with JetStream and Streaming support # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 3.8.0 +PROJECT_NUMBER = 3.8.2 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/src/version.h b/src/version.h index cf86a707f..47c83e09c 100644 --- a/src/version.h +++ b/src/version.h @@ -23,9 +23,9 @@ extern "C" { #define NATS_VERSION_MAJOR 3 #define NATS_VERSION_MINOR 8 -#define NATS_VERSION_PATCH 0 +#define NATS_VERSION_PATCH 2 -#define NATS_VERSION_STRING "3.8.0" +#define NATS_VERSION_STRING "3.8.2" #define NATS_VERSION_NUMBER ((NATS_VERSION_MAJOR << 16) | \ (NATS_VERSION_MINOR << 8) | \