Skip to content

Commit

Permalink
Update release meta for 3.0.6
Browse files Browse the repository at this point in the history
Change-Id: Iff83b4cd4c3ed0ef4579d27f358e272677bcb24a
Reviewed-on: http://review.couchbase.org/c/libcouchbase/+/138621
Tested-by: Build Bot <[email protected]>
Reviewed-by: Sergey Avseyev <[email protected]>
  • Loading branch information
avsej committed Oct 21, 2020
1 parent 43cea7c commit e7b53f0
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
12 changes: 12 additions & 0 deletions RELEASE_NOTES.markdown
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Release Notes

## 3.0.6 (2020-10-21)

* CCBC-1311: Implement `create_as_deleted` subdoc feature.
* CCBC-1263: Update ping to report analytics as analytics service instead of query
* CCBC-1175: Allow to specify timeout for `lcb_ping`
* CCBC-1262: Add accessor for `report_id` in ping report
* CCBC-1176: Rename "scope" to "namespace" in ping report (also deprecate `lcb_respping_result_scope` in favour to `lcb_respping_result_namespace`)
* CCBC-1261: Set namespace length of service in ping report to zero if not applicable
* CCBC-1194: Add extra checks for socket state in `lcb_diag` to avoid invalid access issues
* CCBC-1314: Extra checks for socket state in `lcb_ping` to avoid invalid access issues
* CCBC-1316: Fix two-step bootstrap (`lcb_connect` + `lcb_open`) for memcached bucket.

## 3.0.5 (2020-09-21)

* CCBC-1307: allow to select any mechanisms for SASL regardless network protocol being used.
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.5")
SET(LCB_VERSION "3.0.6")
ENDIF()
IF (NOT LCB_VERSION_CHANGESET)
SET(LCB_VERSION_CHANGESET "0xdeadbeef")
ENDIF()
IF (NOT LCB_VERSION_HEX)
SET(LCB_VERSION_HEX 0x030005)
SET(LCB_VERSION_HEX 0x030006)
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.6")
SET(LCB_SONAME_FULL "${LCB_SONAME_MAJOR}.0.7")

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.5
PROJECT_NUMBER = 3.0.6

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

Please sign in to comment.