Skip to content

Commit

Permalink
Release leveldb 1.12
Browse files Browse the repository at this point in the history
Non-functional changes only:
1) Add Kevin Regan to the AUTHORS file
2) Add standard license header to issues/issue178_test.cc
  • Loading branch information
davidsgrogan committed Jun 18, 2013
1 parent 7b094f1 commit 5bd76dc
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
3 changes: 3 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,6 @@ Google Inc.
# Initial version authors:
Jeffrey Dean <[email protected]>
Sanjay Ghemawat <[email protected]>

# Partial list of contributors:
Kevin Regan <[email protected]>
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion include/leveldb/db.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
4 changes: 4 additions & 0 deletions issues/issue178_test.cc
Original file line number Diff line number Diff line change
@@ -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>
Expand Down

0 comments on commit 5bd76dc

Please sign in to comment.