From 5bd76dc10d840df23255ba0e635083a2a94e0461 Mon Sep 17 00:00:00 2001 From: David Grogan Date: Tue, 18 Jun 2013 11:00:13 -0700 Subject: [PATCH] Release leveldb 1.12 Non-functional changes only: 1) Add Kevin Regan to the AUTHORS file 2) Add standard license header to issues/issue178_test.cc --- AUTHORS | 3 +++ Makefile | 2 +- include/leveldb/db.h | 2 +- issues/issue178_test.cc | 4 ++++ 4 files changed, 9 insertions(+), 2 deletions(-) diff --git a/AUTHORS b/AUTHORS index 27a9407..fc40194 100644 --- a/AUTHORS +++ b/AUTHORS @@ -6,3 +6,6 @@ Google Inc. # Initial version authors: Jeffrey Dean Sanjay Ghemawat + +# Partial list of contributors: +Kevin Regan diff --git a/Makefile b/Makefile index 748d122..96af776 100644 --- a/Makefile +++ b/Makefile @@ -70,7 +70,7 @@ SHARED = $(SHARED1) else # Update db.h if you change these. SHARED_MAJOR = 1 -SHARED_MINOR = 11 +SHARED_MINOR = 12 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 27ea76e..da8b11a 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 = 11; +static const int kMinorVersion = 12; struct Options; struct ReadOptions; diff --git a/issues/issue178_test.cc b/issues/issue178_test.cc index c0a21f0..1b1cf8b 100644 --- a/issues/issue178_test.cc +++ b/issues/issue178_test.cc @@ -1,3 +1,7 @@ +// Copyright (c) 2013 The LevelDB Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. See the AUTHORS file for names of contributors. + // Test for issue 178: a manual compaction causes deleted data to reappear. #include #include