1 // Copyright (c) 2011-present, Facebook, Inc. All rights reserved. 2 // This source code is licensed under both the GPLv2 (found in the 3 // COPYING file in the root directory) and Apache 2.0 License 4 // (found in the LICENSE.Apache file in the root directory). 5 #pragma once 6 7 #define ROCKSDB_MAJOR 6 8 #define ROCKSDB_MINOR 9 9 #define ROCKSDB_PATCH 0 10 11 // Do not use these. We made the mistake of declaring macros starting with 12 // double underscore. Now we have to live with our choice. We'll deprecate these 13 // at some point 14 #define __ROCKSDB_MAJOR__ ROCKSDB_MAJOR 15 #define __ROCKSDB_MINOR__ ROCKSDB_MINOR 16 #define __ROCKSDB_PATCH__ ROCKSDB_PATCH 17