From 13162871fde19203612dc06694c92c32674f3cda Mon Sep 17 00:00:00 2001 From: Xin Dong Date: Fri, 26 Apr 2019 10:19:16 -0700 Subject: [PATCH] Release notes for 1.7.1 --- CHANGES.md | 10 +++++++++- CMakeLists.txt | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 4fc48f8..c2cf427 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,13 @@ ## Release notes +## 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 +* [#177](https://github.com/FoundationDB/fdb-document-layer/pull/177) Fix for `getMore` hangs on error +* [#180](https://github.com/FoundationDB/fdb-document-layer/pull/180) Fix `getDocLayerVersion` command +* [#182](https://github.com/FoundationDB/fdb-document-layer/pull/182) Fix the transaction timeout error for long running reads + ### 1.7.0 * [#49](https://github.com/FoundationDB/fdb-document-layer/issues/49) Slow query logging @@ -42,6 +50,6 @@ ### 1.6.1 * [#2](https://github.com/FoundationDB/fdb-document-layer/issues/2) Support mutual TLS authentication -* [#13](https://github.com/FoundationDB/fdb-document-layer/issues/13) Official Dockerfile and image in Docker Hub +* [#13](https://github.com/FoundationDB/fdb-document-layer/issues/13) Official Dockerfile and image in Docker Hub * [#25](https://github.com/FoundationDB/fdb-document-layer/pull/25) Fix for CentOS 7 packages * [#36](https://github.com/FoundationDB/fdb-document-layer/pull/36) Fix for `ordered` option in update/delete commands diff --git a/CMakeLists.txt b/CMakeLists.txt index 776fb28..36b75e0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.11) -project(fdb_doc_layer VERSION 1.7.0 LANGUAGES C CXX) +project(fdb_doc_layer VERSION 1.7.1 LANGUAGES C CXX) set(default_build_type "RelWithDbgInfo") if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)