Skip to content

Commit

Permalink
Update release meta for 3.3.10
Browse files Browse the repository at this point in the history
Change-Id: I72665d8ff4f4c3cf680c82ca8739d44eaf84c16b
Reviewed-on: https://review.couchbase.org/c/libcouchbase/+/198549
Reviewed-by: Sergey Avseyev <[email protected]>
Tested-by: Build Bot <[email protected]>
  • Loading branch information
avsej committed Oct 10, 2023
1 parent 884038e commit 42c6854
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ CMAKE_MINIMUM_REQUIRED(VERSION 3.5.1)
# Couchbase mock path to download
SET(COUCHBASE_MOCK_VERSION 1.5.25)
SET(COUCHBASE_MOCK_URL "https://github.com/couchbase/CouchbaseMock/releases/download/${COUCHBASE_MOCK_VERSION}/CouchbaseMock-${COUCHBASE_MOCK_VERSION}.jar")
project(libcouchbase VERSION 3.3.9 LANGUAGES C CXX)
project(libcouchbase VERSION 3.3.10 LANGUAGES C CXX)

if (NOT CMAKE_VERSION VERSION_LESS "3.13")
# CMP0077: option() honors normal variables
Expand Down
9 changes: 9 additions & 0 deletions RELEASE_NOTES.markdown
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Release Notes

# 3.3.10 (2023-10-10)

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

# 3.3.9 (2023-09-20)

* CCBC-1608: reduce timeout for idle HTTP connections to 1 second
Expand Down
2 changes: 1 addition & 1 deletion cmake/Modules/GetVersionInfo.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ IF(APPLE)
ELSE()
SET(LCB_SONAME_MAJOR "8")
ENDIF()
SET(LCB_SONAME_FULL "${LCB_SONAME_MAJOR}.0.17")
SET(LCB_SONAME_FULL "${LCB_SONAME_MAJOR}.0.18")

MESSAGE(STATUS "libcouchbase ${LCB_VERSION_MAJOR},${LCB_VERSION_MINOR},${LCB_VERSION_PATCH}")
MESSAGE(STATUS "Building libcouchbase ${LCB_VERSION}/${LCB_VERSION_CHANGESET}")
2 changes: 1 addition & 1 deletion doc/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = "Couchbase C Client"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 3.3.9
PROJECT_NUMBER = 3.3.10

# 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
Expand Down

0 comments on commit 42c6854

Please sign in to comment.