Skip to content

Commit

Permalink
Update release meta for 3.1.3
Browse files Browse the repository at this point in the history
Change-Id: I4d32bb1207848e699457a30e454ebb0f6f87e35a
Reviewed-on: http://review.couchbase.org/c/libcouchbase/+/153228
Tested-by: Build Bot <[email protected]>
Reviewed-by: Sergey Avseyev <[email protected]>
  • Loading branch information
avsej committed May 10, 2021
1 parent bbc6cf6 commit 7739e68
Show file tree
Hide file tree
Showing 4 changed files with 14 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.1.2 LANGUAGES C CXX)
project(libcouchbase VERSION 3.1.3 LANGUAGES C CXX)

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

## 3.1.3 (2021-05-10)

CCBC-1398: Parse and use `revEpoch` from configuration in order to allow the server to handle special cases of failover scenarious.
CCBC-1399: Implement retry backoff for query requests. Instead of retrying requests immediately, use backoff period returned by retry strategy.
CCBC-1400: Fill collection name when retrying collection resolution to avoid misrouting requests to default collection.
CCBC-1397: Reset list of "used" nodes when retrying query to allow reusing endpoints.
CCBC-1401: Fix special error message detection for Query requests. In addition to reacting on the error codes from query service, the library also scans error messages for particular sub-strings to decide whether retry is necessary.
CCBC-861: Purge pipelines on `lcb_destroy`. In order to avoid resource leaks, the library purges all pending (or waiting) commands from the pipelines upon destruction.
Fix `cbc-proxy` tool.
Upgrade snappy to 1.1.8

## 3.1.2 (2021-04-26)

* CCBC-1396: Fix recalculaton of key length for alt packets.
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 "7")
ENDIF()
SET(LCB_SONAME_FULL "${LCB_SONAME_MAJOR}.0.3")
SET(LCB_SONAME_FULL "${LCB_SONAME_MAJOR}.0.4")

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.1.2
PROJECT_NUMBER = 3.1.3

# 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 7739e68

Please sign in to comment.