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
This commit is contained in:
David Grogan 2013-06-18 11:00:13 -07:00
parent 7b094f12e4
commit 5bd76dc10d
4 changed files with 9 additions and 2 deletions

View File

@ -6,3 +6,6 @@ Google Inc.
# Initial version authors: # Initial version authors:
Jeffrey Dean <jeff@google.com> Jeffrey Dean <jeff@google.com>
Sanjay Ghemawat <sanjay@google.com> Sanjay Ghemawat <sanjay@google.com>
# Partial list of contributors:
Kevin Regan <kevin.d.regan@gmail.com>

View File

@ -70,7 +70,7 @@ SHARED = $(SHARED1)
else else
# Update db.h if you change these. # Update db.h if you change these.
SHARED_MAJOR = 1 SHARED_MAJOR = 1
SHARED_MINOR = 11 SHARED_MINOR = 12
SHARED1 = libleveldb.$(PLATFORM_SHARED_EXT) SHARED1 = libleveldb.$(PLATFORM_SHARED_EXT)
SHARED2 = $(SHARED1).$(SHARED_MAJOR) SHARED2 = $(SHARED1).$(SHARED_MAJOR)
SHARED3 = $(SHARED1).$(SHARED_MAJOR).$(SHARED_MINOR) SHARED3 = $(SHARED1).$(SHARED_MAJOR).$(SHARED_MINOR)

View File

@ -14,7 +14,7 @@ namespace leveldb {
// Update Makefile if you change these // Update Makefile if you change these
static const int kMajorVersion = 1; static const int kMajorVersion = 1;
static const int kMinorVersion = 11; static const int kMinorVersion = 12;
struct Options; struct Options;
struct ReadOptions; struct ReadOptions;

View File

@ -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. // Test for issue 178: a manual compaction causes deleted data to reappear.
#include <iostream> #include <iostream>
#include <sstream> #include <sstream>