From cf3119b8a85fb51b86d9b9a14db1e040a15e29f7 Mon Sep 17 00:00:00 2001 From: Bhaskar Muppana Date: Mon, 12 Aug 2019 13:14:02 -0700 Subject: [PATCH 1/2] Release notes for 1.8.0 --- CHANGES.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 9da1166..3e6d2f0 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,10 +1,16 @@ ## Release notes -## 1.7.2 +### 1.8.0 + +* [#94](https://github.com/FoundationDB/fdb-document-layer/issues/94) - Added `renameCollection` command +* [#129](https://github.com/FoundationDB/fdb-document-layer/issues/129) - Moved to FDB dependency 6.0 -> 6.1 +* [#202](https://github.com/FoundationDB/fdb-document-layer/issues/202) - Fix for a memory leak on new connections + +### 1.7.2 * [#185](https://github.com/FoundationDB/fdb-document-layer/pull/185) Fix for compound index selection query planner -## 1.7.1 +### 1.7.1 * [#135](https://github.com/FoundationDB/fdb-document-layer/issues/135) Fix for None value handling in arrays * [#175](https://github.com/FoundationDB/fdb-document-layer/pull/175) Fix the bug that command `dropIndex`'s error message misses some fields From f34ba38f020efae4f538f4dbae5647e5db0966d1 Mon Sep 17 00:00:00 2001 From: Bhaskar Muppana Date: Mon, 12 Aug 2019 13:14:34 -0700 Subject: [PATCH 2/2] Bump version to 1.8.0 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c32a6fc..07826d3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.11) -project(fdb_doc_layer VERSION 1.7.2 LANGUAGES C CXX) +project(fdb_doc_layer VERSION 1.8.0 LANGUAGES C CXX) set(default_build_type "RelWithDbgInfo") if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)