Skip to content

Commit

Permalink
Update release meta for 3.0.5
Browse files Browse the repository at this point in the history
Change-Id: I4632e5656b42b41a36c698de08bd78d59a81d8eb
Reviewed-on: http://review.couchbase.org/c/libcouchbase/+/136577
Tested-by: Build Bot <[email protected]>
Reviewed-by: Sergey Avseyev <[email protected]>
  • Loading branch information
avsej committed Sep 21, 2020
1 parent 2680473 commit b14a8e4
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
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.0.5 (2020-09-21)

* CCBC-1307: allow to select any mechanisms for SASL regardless network protocol being used.
But by default, try to avoid downgrading to PLAIN on non-TLS connections. Also the change allows to specify list of
preferred mechanisms instead of only one (use comma in the value of `sasl_mech_force` connection string option).
* CCBC-1276: allow to hint flex index usage in query options
* CCBC-1312: fix return values for `lcb_cmdquery_scope_*`
* CCBC-1313: replace `std::random_shuffle` with `std::shuffle` (fixes build of `cbc-n1qlback` tool)

## 3.0.4 (2020-08-26)

* CCBC-1281: Implement scope qualifier for queries
Expand Down
6 changes: 3 additions & 3 deletions cmake/Modules/GetVersionInfo.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ ENDIF()

IF (NOT LCB_VERSION)
SET(LCB_NOGITVERSION ON)
SET(LCB_VERSION "3.0.4")
SET(LCB_VERSION "3.0.5")
ENDIF()
IF (NOT LCB_VERSION_CHANGESET)
SET(LCB_VERSION_CHANGESET "0xdeadbeef")
ENDIF()
IF (NOT LCB_VERSION_HEX)
SET(LCB_VERSION_HEX 0x030004)
SET(LCB_VERSION_HEX 0x030005)
ENDIF()

# Now parse the version string
Expand All @@ -63,7 +63,7 @@ IF(APPLE)
ELSE()
SET(LCB_SONAME_MAJOR "6")
ENDIF()
SET(LCB_SONAME_FULL "${LCB_SONAME_MAJOR}.0.5")
SET(LCB_SONAME_FULL "${LCB_SONAME_MAJOR}.0.6")

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.0.4
PROJECT_NUMBER = 3.0.5

# 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 b14a8e4

Please sign in to comment.