From f3f2032c461bae38c77e7a30901b0cb9d10296e9 Mon Sep 17 00:00:00 2001 From: Islam AbdelRahman Date: Wed, 9 Sep 2015 16:01:03 -0700 Subject: [PATCH] Release RocksDB 4.0.0 Summary: Release RocksDB 4.0.0 Test Plan: no test Reviewers: sdong, yhchiang, anthony, rven, kradhakrishnan, igor Reviewed By: igor Subscribers: dhruba Differential Revision: https://reviews.facebook.net/D46515 --- HISTORY.md | 3 +-- include/rocksdb/version.h | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index 03964db1e..9457c0d8e 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,7 +1,6 @@ # Rocksdb Change Log -## Unreleased - +## 4.0.0 (9/9/2015) ### New Features * Added support for transactions. See include/rocksdb/utilities/transaction.h for more info. * DB::GetProperty() now accept "rocksdb.aggregated-table-properties" and "rocksdb.aggregated-table-properties-at-levelN", in which case it returns aggregated table properties of the target column family, or the aggregated table properties of the specified level N if the "at-level" version is used. diff --git a/include/rocksdb/version.h b/include/rocksdb/version.h index b00de56fc..e84e91974 100644 --- a/include/rocksdb/version.h +++ b/include/rocksdb/version.h @@ -4,8 +4,8 @@ // of patent rights can be found in the PATENTS file in the same directory. #pragma once -#define ROCKSDB_MAJOR 3 -#define ROCKSDB_MINOR 14 +#define ROCKSDB_MAJOR 4 +#define ROCKSDB_MINOR 0 #define ROCKSDB_PATCH 0 // Do not use these. We made the mistake of declaring macros starting with -- GitLab