diff --git a/CHANGELOG.md b/CHANGELOG.md index 286a9e2dec..b47989ee52 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,12 +4,8 @@ Pearl changelog ## [Unreleased] #### Added -- Add method to offload bloom filters (#121) #### Changed -- Dump blob indices in separate thread on active blob close (#136) [https://github.com/qoollo/pearl/pull/137] -- Remove second file descriptor from File ([#124](https://github.com/qoollo/pearl/pull/125)) -- Acquire advisory write lock on files ([#124](https://github.com/qoollo/pearl/pull/125)) #### Fixed @@ -18,6 +14,16 @@ Pearl changelog #### Updated +## [0.8.0] - 2021-11-09 +#### Added +- Add method to offload bloom filters (#121) + +#### Changed +- Dump blob indices in separate thread on active blob close (#136) +- Remove second file descriptor from File (#124) +- Acquire advisory write lock on files (#124) + + ## [0.7.1] - 2021-10-18 #### Added - Add more functions to interface to support work with optional active blob (#118) diff --git a/Cargo.toml b/Cargo.toml index 18f7adb46d..578d4dac15 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pearl" -version = "0.7.1" +version = "0.8.0" description = "Pearl is a low level blob-based I/O library" repository = "https://github.com/qoollo/pearl" homepage = "https://github.com/qoollo/pearl" diff --git a/src/storage/core.rs b/src/storage/core.rs index b8290c3e48..2a37d91b24 100644 --- a/src/storage/core.rs +++ b/src/storage/core.rs @@ -51,7 +51,6 @@ pub(crate) struct Inner { pub(crate) struct Safe { pub(crate) active_blob: Option>, pub(crate) blobs: Arc>>, - lock_file: Option, } impl Clone for Storage { @@ -992,7 +991,6 @@ impl Safe { Self { active_blob: None, blobs: Arc::new(RwLock::new(Vec::new())), - lock_file: None, } }