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 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)