Skip to content

Commit 5bd76dc

Browse files
committed
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
1 parent 7b094f1 commit 5bd76dc

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-2
lines changed

AUTHORS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,6 @@ Google Inc.
66
# Initial version authors:
77
Jeffrey Dean <[email protected]>
88
Sanjay Ghemawat <[email protected]>
9+
10+
# Partial list of contributors:
11+
Kevin Regan <[email protected]>

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ SHARED = $(SHARED1)
7070
else
7171
# Update db.h if you change these.
7272
SHARED_MAJOR = 1
73-
SHARED_MINOR = 11
73+
SHARED_MINOR = 12
7474
SHARED1 = libleveldb.$(PLATFORM_SHARED_EXT)
7575
SHARED2 = $(SHARED1).$(SHARED_MAJOR)
7676
SHARED3 = $(SHARED1).$(SHARED_MAJOR).$(SHARED_MINOR)

include/leveldb/db.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace leveldb {
1414

1515
// Update Makefile if you change these
1616
static const int kMajorVersion = 1;
17-
static const int kMinorVersion = 11;
17+
static const int kMinorVersion = 12;
1818

1919
struct Options;
2020
struct ReadOptions;

issues/issue178_test.cc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright (c) 2013 The LevelDB Authors. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file. See the AUTHORS file for names of contributors.
4+
15
// Test for issue 178: a manual compaction causes deleted data to reappear.
26
#include <iostream>
37
#include <sstream>

0 commit comments

Comments
 (0)