File tree Expand file tree Collapse file tree 5 files changed +8
-8
lines changed
Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1- name : " Release "
1+ name : " Build & Tests "
22on :
33 push :
44 branches :
Original file line number Diff line number Diff line change @@ -270,9 +270,9 @@ endif(NATS_BUILD_WITH_TLS)
270270set (NATS_VERSION_MAJOR 3)
271271set (NATS_VERSION_MINOR 12)
272272set (NATS_VERSION_PATCH 0)
273- set (NATS_VERSION_SUFFIX "-beta " )
273+ set (NATS_VERSION_SUFFIX "" )
274274
275- set (NATS_VERSION_REQUIRED_NUMBER 0x030B00 )
275+ set (NATS_VERSION_REQUIRED_NUMBER 0x030C00 )
276276
277277write_basic_package_version_file(
278278 "${PROJECT_BINARY_DIR} /cnats-config-version.cmake"
Original file line number Diff line number Diff line change @@ -7,9 +7,9 @@ and check the [frequently asked questions](https://github.com/nats-io/nats.c#faq
77This NATS Client implementation is heavily based on the [ NATS GO Client] ( https://github.com/nats-io/nats.go ) . There is support for Mac OS/X, Linux and Windows (although we don't have specific platform support matrix).
88
99[ ![ License Apache 2] ( https://img.shields.io/badge/License-Apache2-blue.svg )] ( https://www.apache.org/licenses/LICENSE-2.0 )
10- [ ![ Build Status] ( https://travis-ci .com/nats-io/nats.c. svg?branch=main )] ( https://travis-ci .com/github/ nats-io/nats.c )
10+ [ ![ Build- Status] ( https://github .com/nats-io/nats.c/actions/workflows/on-push-release-extra.yml/badge. svg?branch=main )] ( https://github .com/nats-io/nats.c/actions/workflows/on-push-release-extra.yml )
1111[ ![ 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 )
12- [ ![ Release] ( https://img.shields.io/badge/release-v3.11 .0-blue.svg?style=flat )] ( https://github.com/nats-io/nats.c/releases/tag/v3.11 .0 )
12+ [ ![ Release] ( https://img.shields.io/badge/release-v3.12 .0-blue.svg?style=flat )] ( https://github.com/nats-io/nats.c/releases/tag/v3.12 .0 )
1313[ ![ Documentation] ( https://img.shields.io/badge/doc-Doxygen-brightgreen.svg?style=flat )] ( http://nats-io.github.io/nats.c )
1414
1515# Table of Contents
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ PROJECT_NAME = NATS C Client with JetStream and Streaming support
4848# could be handy for archiving the generated documentation or if some version
4949# control system is used.
5050
51- PROJECT_NUMBER = 3.12.0-beta
51+ PROJECT_NUMBER = 3.12.0
5252
5353# Using the PROJECT_BRIEF tag one can provide an optional one line description
5454# for a project that appears at the top of each page and should give viewer a
Original file line number Diff line number Diff line change @@ -25,13 +25,13 @@ extern "C" {
2525#define NATS_VERSION_MINOR 12
2626#define NATS_VERSION_PATCH 0
2727
28- #define NATS_VERSION_STRING "3.12.0-beta "
28+ #define NATS_VERSION_STRING "3.12.0"
2929
3030#define NATS_VERSION_NUMBER ((NATS_VERSION_MAJOR << 16) | \
3131 (NATS_VERSION_MINOR << 8) | \
3232 NATS_VERSION_PATCH)
3333
34- #define NATS_VERSION_REQUIRED_NUMBER 0x030B00
34+ #define NATS_VERSION_REQUIRED_NUMBER 0x030C00
3535
3636#ifdef __cplusplus
3737}
You can’t perform that action at this time.
0 commit comments