File tree Expand file tree Collapse file tree 3 files changed +16
-3
lines changed
Expand file tree Collapse file tree 3 files changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,14 @@ The format is based on [Keep a Changelog].
66
77## [ Unreleased]
88
9+ ## [ v0.5.2] - 2024-05-28
10+
11+ - Compilation support for riscv64
12+
13+ ## [ v0.5.1] - 2025-05-14
14+
15+ - Optimized large value storage to store full value size in the header
16+
917## [ v0.5.0] - 2024-10-03
1018
1119- Multi tree column option [ ` #232 ` ] ( https://github.com/paritytech/parity-db/pull/232 )
Original file line number Diff line number Diff line change 11[package ]
22name = " parity-db"
3- version = " 0.5.1 "
3+ version = " 0.5.2 "
44authors = [" Parity Technologies <admin@parity.io>" ]
55edition = " 2021"
66license = " MIT OR Apache-2.0"
Original file line number Diff line number Diff line change @@ -36,8 +36,13 @@ pub use stats::{ColumnStatSummary, StatSummary};
3636pub const KEY_SIZE : usize = 32 ;
3737pub type Key = [ u8 ; KEY_SIZE ] ;
3838
39- #[ cfg( not( any( target_arch = "x86_64" , target_arch = "aarch64" , target_arch = "loongarch64" ) ) ) ]
40- compile_error ! ( "parity-db only supports x86_64, aarch64 and loongarch64 (unofficially)" ) ;
39+ #[ cfg( not( any(
40+ target_arch = "x86_64" ,
41+ target_arch = "aarch64" ,
42+ target_arch = "loongarch64" ,
43+ target_arch = "riscv64"
44+ ) ) ) ]
45+ compile_error ! ( "parity-db only supports x86_64, aarch64, riscv64 and loongarch64 (unofficially)" ) ;
4146
4247#[ cfg( not( target_endian = "little" ) ) ]
4348compile_error ! ( "parity-db only supports little-endian platforms" ) ;
You can’t perform that action at this time.
0 commit comments