Skip to content

Commit

Permalink
Update release meta for 3.1.0
Browse files Browse the repository at this point in the history
Change-Id: I55e7e823d2a1ae4a47be86bc477f54b7b3b50e5a
Reviewed-on: http://review.couchbase.org/c/libcouchbase/+/147552
Tested-by: Build Bot <[email protected]>
Reviewed-by: Sergey Avseyev <[email protected]>
  • Loading branch information
avsej committed Mar 3, 2021
1 parent 1cb6ea2 commit ed8b57e
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 6 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.0.7 LANGUAGES C CXX)
project(libcouchbase VERSION 3.1.0 LANGUAGES C CXX)

if (NOT CMAKE_VERSION VERSION_LESS "3.13")
# CMP0077: option() honors normal variables
Expand Down
1 change: 0 additions & 1 deletion README.markdown
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Couchbase C Client

[![license](https://img.shields.io/github/license/couchbase/libcouchbase?color=brightgreen)](https://opensource.org/licenses/Apache-2.0)
[![jenkins](https://img.shields.io/jenkins/build?jobUrl=http%3A%2F%2Fsdk.jenkins.couchbase.com%2Fjob%2Fc-cpp%2Fjob%2Flcb%2Fjob%2Flibcouchbase-nightly%2F)](http://sdk.jenkins.couchbase.com/job/c-cpp/job/lcb/job/libcouchbase-nightly/)

This is the C client library for [Couchbase](http://www.couchbase.com)
It communicates with the cluster and speaks the relevant protocols
Expand Down
15 changes: 15 additions & 0 deletions RELEASE_NOTES.markdown
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Release Notes

## 3.1.0 (2021-03-03)

* CCBC-1376: propagate scope qualifier to prepare statements
* CCBC-1283: add analytics support for scopes
* CCBC-1374: reintroduce input error classification macro
* CCBC-1375: translate query errors when scope/collection missing
* CCBC-1368: fix project links in README
* CCBC-1366: do not cache bucket-less configurations
* CCBC-1363: allow using parent project's `hdr_histogram_static` target
* CCBC-1361: allow `"_default._default"` collection for pre-collections servers
* MB-42884: correctly define `FILEVERSION` for libcouchbase.dll
* CCBC-1351: option to render cbc-ping output as a table
* CCBC-1323: return `LCB_ERR_DOCUMENT_EXISTS` only for insert operation
* CCBC-1346: return `LCB_ERR_DOCUMENT_LOCKED` for locked documents

## 3.0.7 (2020-12-15)

* CCBC-1350: Implement an option for cbc-n1ql to control prepared/adhoc switch
Expand Down
6 changes: 3 additions & 3 deletions cmake/Modules/GetVersionInfo.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,11 @@ LIST(GET LCB_VERSION_LIST 2 LCB_VERSION_PATCH)

# Determine the SONAME for the library
IF(APPLE)
SET(LCB_SONAME_MAJOR "7")
SET(LCB_SONAME_MAJOR "8")
ELSE()
SET(LCB_SONAME_MAJOR "6")
SET(LCB_SONAME_MAJOR "7")
ENDIF()
SET(LCB_SONAME_FULL "${LCB_SONAME_MAJOR}.0.8")
SET(LCB_SONAME_FULL "${LCB_SONAME_MAJOR}.0.1")

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.7
PROJECT_NUMBER = 3.1.0

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

Please sign in to comment.