Skip to content

Commit 6a66867

Browse files
authored
Updated version to v3.11-beta (nats-io#855)
* Updated version to v3.11-beta * Changed NATS_VERSION_REQUIRED_NUMBER back to 030A
1 parent e5bb306 commit 6a66867

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -259,11 +259,11 @@ endif(NATS_BUILD_WITH_TLS)
259259
# Versionning and Doc
260260

261261
set(NATS_VERSION_MAJOR 3)
262-
set(NATS_VERSION_MINOR 10)
262+
set(NATS_VERSION_MINOR 11)
263263
set(NATS_VERSION_PATCH 0)
264264
set(NATS_VERSION_SUFFIX "-beta")
265265

266-
set(NATS_VERSION_REQUIRED_NUMBER 0x030900)
266+
set(NATS_VERSION_REQUIRED_NUMBER 0x030A00)
267267

268268
write_basic_package_version_file(
269269
"${PROJECT_BINARY_DIR}/cnats-config-version.cmake"

doc/DoxyFile.NATS.Client

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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.10.0-beta
51+
PROJECT_NUMBER = 3.11.0-beta
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

src/version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@ extern "C" {
2222
#endif
2323

2424
#define NATS_VERSION_MAJOR 3
25-
#define NATS_VERSION_MINOR 10
25+
#define NATS_VERSION_MINOR 11
2626
#define NATS_VERSION_PATCH 0
2727

28-
#define NATS_VERSION_STRING "3.10.0-beta"
28+
#define NATS_VERSION_STRING "3.11.0-beta"
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 0x030900
34+
#define NATS_VERSION_REQUIRED_NUMBER 0x030A00
3535

3636
#ifdef __cplusplus
3737
}

0 commit comments

Comments
 (0)