Skip to content

Commit

Permalink
Merge pull request #242 from MattHalpinParity/multi_tree_bump_version
Browse files Browse the repository at this point in the history
Bump version to include multi tree changes
  • Loading branch information
MattHalpinParity authored Oct 7, 2024
2 parents a54e6cf + 72b8f20 commit ee51351
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog].

## [Unreleased]

## [v0.5.0] - 2024-10-03

- Multi tree column option [`#232`](https://github.com/paritytech/parity-db/pull/232)

## [v0.4.13] - 2024-01-05

- Lock memory map when reading from file [`#234`](https://github.com/paritytech/parity-db/pull/234)
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 = "parity-db"
version = "0.4.13"
version = "0.5.0"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand Down
5 changes: 4 additions & 1 deletion src/log.rs
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,10 @@ impl std::ops::Deref for LogWriterValueGuard<'_> {
}

impl<'q> LogQuery for LogWriter<'q> {
type ValueRef<'a> = LogWriterValueGuard<'a> where Self: 'a;
type ValueRef<'a>
= LogWriterValueGuard<'a>
where
Self: 'a;
fn with_index<R, F: FnOnce(&IndexChunk) -> R>(
&self,
table: IndexTableId,
Expand Down

0 comments on commit ee51351

Please sign in to comment.