瀏覽代碼

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
main
David Grogan 11 年之前
父節點
當前提交
5bd76dc10d
共有 4 個檔案被更改,包括 9 行新增2 行删除
  1. +3
    -0
      AUTHORS
  2. +1
    -1
      Makefile
  3. +1
    -1
      include/leveldb/db.h
  4. +4
    -0
      issues/issue178_test.cc

+ 3
- 0
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>

+ 1
- 1
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)

+ 1
- 1
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;

+ 4
- 0
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>

Loading…
取消
儲存