Skip to content

Commit e506920

Browse files
committed
1.4.0
1 parent 057c195 commit e506920

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "value-log"
33
description = "Value log implementation for key-value separated LSM storage"
44
license = "MIT OR Apache-2.0"
5-
version = "1.3.0"
5+
version = "1.4.0"
66
edition = "2021"
77
rust-version = "1.74.0"
88
readme = "README.md"

src/gc/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
// This source code is licensed under both the Apache 2.0 and MIT License
33
// (found in the LICENSE-* files in the repository)
44

5-
use crate::{id::SegmentId, Compressor, ValueLog};
6-
75
pub mod report;
86

7+
use crate::{id::SegmentId, Compressor, ValueLog};
8+
99
/// GC strategy
1010
#[allow(clippy::module_name_repetitions)]
1111
pub trait GcStrategy<C: Compressor + Clone> {

0 commit comments

Comments
 (0)