We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35619d2 commit 56178ddCopy full SHA for 56178dd
CMakeLists.txt
@@ -3,6 +3,7 @@
3
# found in the LICENSE file. See the AUTHORS file for names of contributors.
4
5
cmake_minimum_required(VERSION 3.9)
6
+# Keep the version below in sync with the one in db.h
7
project(leveldb VERSION 1.21.0 LANGUAGES C CXX)
8
9
# This project can use C11, but will gracefully decay down to C89.
include/leveldb/db.h
@@ -13,9 +13,9 @@
13
14
namespace leveldb {
15
16
-// Update Makefile if you change these
+// Update CMakeLists.txt if you change these
17
static const int kMajorVersion = 1;
18
-static const int kMinorVersion = 20;
+static const int kMinorVersion = 21;
19
20
struct Options;
21
struct ReadOptions;
0 commit comments