From 28a5948ddb76956125c6d4af1ac10796c95a5d55 Mon Sep 17 00:00:00 2001 From: Lev Brouk Date: Tue, 1 Oct 2024 11:15:44 -0700 Subject: [PATCH] Updated version to v3.9.0 --- CMakeLists.txt | 2 +- README.md | 2 +- doc/DoxyFile.NATS.Client | 2 +- doc/DoxyFile.NATS.Client.in | 4 ++-- src/version.h | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7b87592f7..4a725bff2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -254,7 +254,7 @@ endif(NATS_BUILD_WITH_TLS) set(NATS_VERSION_MAJOR 3) set(NATS_VERSION_MINOR 9) set(NATS_VERSION_PATCH 0) -set(NATS_VERSION_SUFFIX "-beta") +set(NATS_VERSION_SUFFIX "") set(NATS_VERSION_REQUIRED_NUMBER 0x030900) diff --git a/README.md b/README.md index 13d7bff45..a507cba90 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ This NATS Client implementation is heavily based on the [NATS GO Client](https:/ [![License Apache 2](https://img.shields.io/badge/License-Apache2-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0) [![Build Status](https://travis-ci.com/nats-io/nats.c.svg?branch=main)](https://travis-ci.com/github/nats-io/nats.c) [![Coverage Status](https://coveralls.io/repos/github/nats-io/nats.c/badge.svg?branch=main)](https://coveralls.io/github/nats-io/nats.c?branch=main) -[![Release](https://img.shields.io/badge/release-v3.8.2-blue.svg?style=flat)](https://github.com/nats-io/nats.c/releases/tag/v3.8.2) +[![Release](https://img.shields.io/badge/release-v3.9.0-blue.svg?style=flat)](https://github.com/nats-io/nats.c/releases/tag/v3.9.0) [![Documentation](https://img.shields.io/badge/doc-Doxygen-brightgreen.svg?style=flat)](http://nats-io.github.io/nats.c) # Table of Contents diff --git a/doc/DoxyFile.NATS.Client b/doc/DoxyFile.NATS.Client index d5f5b6508..b2f7f93a7 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.9.0-beta +PROJECT_NUMBER = 3.9.0 # 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/doc/DoxyFile.NATS.Client.in b/doc/DoxyFile.NATS.Client.in index 13c62ceb1..be4b34858 100644 --- a/doc/DoxyFile.NATS.Client.in +++ b/doc/DoxyFile.NATS.Client.in @@ -1340,7 +1340,7 @@ HTML_COLORSTYLE_GAMMA = 80 # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. -HTML_TIMESTAMP = NO +# HTML_TIMESTAMP = NO # If the HTML_DYNAMIC_MENUS tag is set to YES then the generated HTML # documentation will contain a main index with vertical navigation menus that @@ -2008,7 +2008,7 @@ LATEX_BIB_STYLE = plain # The default value is: NO. # This tag requires that the tag GENERATE_LATEX is set to YES. -LATEX_TIMESTAMP = NO +# LATEX_TIMESTAMP = NO # The LATEX_EMOJI_DIRECTORY tag is used to specify the (relative or absolute) # path from which the emoji images will be read. If a relative path is entered, diff --git a/src/version.h b/src/version.h index e06ea3530..7ece7b857 100644 --- a/src/version.h +++ b/src/version.h @@ -25,7 +25,7 @@ extern "C" { #define NATS_VERSION_MINOR 9 #define NATS_VERSION_PATCH 0 -#define NATS_VERSION_STRING "3.9.0-beta" +#define NATS_VERSION_STRING "3.9.0" #define NATS_VERSION_NUMBER ((NATS_VERSION_MAJOR << 16) | \ (NATS_VERSION_MINOR << 8) | \