From dd0d562b4d4fbd07db6a44f9e221f8d368fee8e4 Mon Sep 17 00:00:00 2001 From: Sanjay Ghemawat Date: Wed, 30 May 2012 09:57:20 -0700 Subject: [PATCH] update version number to 1.5 --- Makefile | 2 +- include/leveldb/db.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5cd9d379588db..c648a285ea0b8 100644 --- a/Makefile +++ b/Makefile @@ -70,7 +70,7 @@ SHARED = $(SHARED1) else # Update db.h if you change these. SHARED_MAJOR = 1 -SHARED_MINOR = 4 +SHARED_MINOR = 5 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 481aad67566b6..ed56b87c38afb 100644 --- a/include/leveldb/db.h +++ b/include/leveldb/db.h @@ -14,7 +14,7 @@ namespace leveldb { // Update Makefile if you change these static const int kMajorVersion = 1; -static const int kMinorVersion = 4; +static const int kMinorVersion = 5; struct Options; struct ReadOptions;