Skip to content

Commit 56178dd

Browse files
cmumfordpwnall
authored andcommittedMar 29, 2019
Update the version to 1.21 in preparation for a new release.
PiperOrigin-RevId: 241053616
1 parent 35619d2 commit 56178dd

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed
 

‎CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# found in the LICENSE file. See the AUTHORS file for names of contributors.
44

55
cmake_minimum_required(VERSION 3.9)
6+
# Keep the version below in sync with the one in db.h
67
project(leveldb VERSION 1.21.0 LANGUAGES C CXX)
78

89
# This project can use C11, but will gracefully decay down to C89.

‎include/leveldb/db.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313

1414
namespace leveldb {
1515

16-
// Update Makefile if you change these
16+
// Update CMakeLists.txt if you change these
1717
static const int kMajorVersion = 1;
18-
static const int kMinorVersion = 20;
18+
static const int kMinorVersion = 21;
1919

2020
struct Options;
2121
struct ReadOptions;

0 commit comments

Comments
 (0)