Skip to content

Commit 42c6854

Browse files
committed
Update release meta for 3.3.10
Change-Id: I72665d8ff4f4c3cf680c82ca8739d44eaf84c16b Reviewed-on: https://review.couchbase.org/c/libcouchbase/+/198549 Reviewed-by: Sergey Avseyev <[email protected]> Tested-by: Build Bot <[email protected]>
1 parent 884038e commit 42c6854

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

CMakeLists.txt

+1-1
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.9 LANGUAGES C CXX)
33+
project(libcouchbase VERSION 3.3.10 LANGUAGES C CXX)
3434

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

RELEASE_NOTES.markdown

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Release Notes
22

3+
# 3.3.10 (2023-10-10)
4+
5+
* CCBC-1616: apply `wait_for_config` check for all pipelines. Previously, the `lcb_wait` function would wait for the
6+
pending configuration updates, but don't do it if the configuration update operation is being retried for some reason.
7+
Now, the operation also will not wait for pending configuration updates, and rather return from `lcb_wait` as soon as
8+
the operation completes. The old behaviour still works when `wait_for_config=true` is passed in connection string (or
9+
`LCB_CNTL_WAIT_FOR_CONFIG` set to non-zero value), in this case the library will wait for the configuration. This
10+
setting does not affect the mode, when the event loop is executed by the application, and without `lcb_wait`.
11+
312
# 3.3.9 (2023-09-20)
413

514
* CCBC-1608: reduce timeout for idle HTTP connections to 1 second

cmake/Modules/GetVersionInfo.cmake

+1-1
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.17")
68+
SET(LCB_SONAME_FULL "${LCB_SONAME_MAJOR}.0.18")
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

+1-1
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.9
41+
PROJECT_NUMBER = 3.3.10
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)