Skip to content

Commit 5cde9a9

Browse files
committed
Update release meta for 3.3.7
Change-Id: I22f04ffa993119e2e9adecc409d73c40d3dac13d Reviewed-on: https://review.couchbase.org/c/libcouchbase/+/190847 Tested-by: Build Bot <build@couchbase.com> Reviewed-by: Sergey Avseyev <sergey.avseyev@gmail.com>
1 parent 62a7ff8 commit 5cde9a9

4 files changed

Lines changed: 19 additions & 3 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ CMAKE_MINIMUM_REQUIRED(VERSION 3.5.1)
3030
# Couchbase mock path to download
3131
SET(COUCHBASE_MOCK_VERSION 1.5.25)
3232
SET(COUCHBASE_MOCK_URL "https://github.com/couchbase/CouchbaseMock/releases/download/${COUCHBASE_MOCK_VERSION}/CouchbaseMock-${COUCHBASE_MOCK_VERSION}.jar")
33-
project(libcouchbase VERSION 3.3.6 LANGUAGES C CXX)
33+
project(libcouchbase VERSION 3.3.7 LANGUAGES C CXX)
3434

3535
if (NOT CMAKE_VERSION VERSION_LESS "3.13")
3636
# CMP0077: option() honors normal variables

RELEASE_NOTES.markdown

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Release Notes
22

3+
## 3.3.7 (2023-05-11)
4+
5+
* CCBC-1596: replace unsafe sprintf with snprintf.
6+
7+
* CCBC-1597: Update threading example, reduce global state.
8+
9+
- Json::Reader uses static global variable, this patch replaces calls
10+
to it with Json::CharReaderBuilder, which is re-entrant.
11+
12+
- Constants for tracing system defined as mutable static strings, this
13+
patch replaces it with const static strings.
14+
15+
- Updated examples for thread-safe usage is updated to SDK3 API and
16+
added them to the build pipeline
17+
18+
319
## 3.3.6 (2023-04-26)
420

521
* CCBC-1590: Always pick random node for HTTP services.

cmake/Modules/GetVersionInfo.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ IF(APPLE)
6565
ELSE()
6666
SET(LCB_SONAME_MAJOR "8")
6767
ENDIF()
68-
SET(LCB_SONAME_FULL "${LCB_SONAME_MAJOR}.0.14")
68+
SET(LCB_SONAME_FULL "${LCB_SONAME_MAJOR}.0.15")
6969

7070
MESSAGE(STATUS "libcouchbase ${LCB_VERSION_MAJOR},${LCB_VERSION_MINOR},${LCB_VERSION_PATCH}")
7171
MESSAGE(STATUS "Building libcouchbase ${LCB_VERSION}/${LCB_VERSION_CHANGESET}")

doc/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = "Couchbase C Client"
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 3.3.6
41+
PROJECT_NUMBER = 3.3.7
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

0 commit comments

Comments
 (0)