Skip to content

Commit

Permalink
Release v0.8.0 (#139)
Browse files Browse the repository at this point in the history
* remove dead code

* Update CHANGELOG.md

* bump version to 0.8.0
  • Loading branch information
piakushin authored Nov 10, 2021
1 parent a4e99f2 commit c4fc8ba
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
14 changes: 10 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 0 additions & 2 deletions src/storage/core.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ pub(crate) struct Inner {
pub(crate) struct Safe {
pub(crate) active_blob: Option<Box<Blob>>,
pub(crate) blobs: Arc<RwLock<Vec<Blob>>>,
lock_file: Option<StdFile>,
}

impl<K: Key> Clone for Storage<K> {
Expand Down Expand Up @@ -992,7 +991,6 @@ impl Safe {
Self {
active_blob: None,
blobs: Arc::new(RwLock::new(Vec::new())),
lock_file: None,
}
}

Expand Down

0 comments on commit c4fc8ba

Please sign in to comment.