aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordgrogan@chromium.org <dgrogan@chromium.org@62dab493-f737-651d-591e-8d6aee1b9529>2013-06-18 18:03:39 +0000
committerdgrogan@chromium.org <dgrogan@chromium.org@62dab493-f737-651d-591e-8d6aee1b9529>2013-06-18 18:03:39 +0000
commit9768d126762064fb35c6fd19e41ef9b988c3c329 (patch)
treee40a37b9b88c37938b058977be1943555923e8a9
parent11042098fe3e5a16ad70c388bb5914a907ae3fae (diff)
downloadsrc-9768d126762064fb35c6fd19e41ef9b988c3c329.tar.gz
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 git-svn-id: http://leveldb.googlecode.com/svn/trunk@75 62dab493-f737-651d-591e-8d6aee1b9529
-rw-r--r--AUTHORS3
-rw-r--r--Makefile2
-rw-r--r--include/leveldb/db.h2
-rw-r--r--issues/issue178_test.cc4
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 <jeff@google.com>
Sanjay Ghemawat <sanjay@google.com>
+
+# Partial list of contributors:
+Kevin Regan <kevin.d.regan@gmail.com>
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 <iostream>
#include <sstream>