diff --git a/Makefile b/Makefile index 2665c3a21..9b1d05fcf 100644 --- a/Makefile +++ b/Makefile @@ -90,8 +90,8 @@ SHARED3 = $(SHARED1) SHARED = $(SHARED1) else # Update db.h if you change these. -SHARED_MAJOR = 1 -SHARED_MINOR = 5 +SHARED_MAJOR = 2 +SHARED_MINOR = 0 SHARED1 = libleveldb.$(PLATFORM_SHARED_EXT) SHARED2 = $(SHARED1).$(SHARED_MAJOR) SHARED3 = $(SHARED1).$(SHARED_MAJOR).$(SHARED_MINOR) diff --git a/include/leveldb/db.h b/include/leveldb/db.h index 8fd780e51..6d816edce 100644 --- a/include/leveldb/db.h +++ b/include/leveldb/db.h @@ -19,8 +19,8 @@ namespace leveldb { using std::unique_ptr; // Update Makefile if you change these -static const int kMajorVersion = 1; -static const int kMinorVersion = 5; +static const int kMajorVersion = 2; +static const int kMinorVersion = 0; struct Options; struct ReadOptions;