Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ethbloom/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ The format is based on [Keep a Changelog].

## [0.8.1] - 2019-10-24
### Dependencies
- Updated dependencies (https://github.com/paritytech/parity-common/pull/239)
- Updated dependencies. [#239](https://github.com/paritytech/parity-common/pull/239)
4 changes: 2 additions & 2 deletions ethereum-types/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Changelog

The format is based on [Keep a Changelog].
The format is based on [Keep a Changelog].

[Keep a Changelog]: http://keepachangelog.com/en/1.0.0/

## [Unreleased]
- License changed from MIT to dual MIT/Apache2. [#342](https://github.com/paritytech/parity-common/pull/342)

### Added
- uint error type is re-exported (https://github.com/paritytech/parity-common/pull/244)
- Uint error type is re-exported. [#244](https://github.com/paritytech/parity-common/pull/244)
4 changes: 2 additions & 2 deletions fixed-hash/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ The format is based on [Keep a Changelog].

## [0.5.2] - 2019-12-19
### Fixed
- re-export `alloc` for both std and no-std to fix compilation (See [PR #268](https://github.com/paritytech/parity-common/pull/268))
- Re-export `alloc` for both std and no-std to fix compilation. [#268](https://github.com/paritytech/parity-common/pull/268)

## [0.5.1] - 2019-10-24
### Dependencies
- Updated dependencies (https://github.com/paritytech/parity-common/pull/239)
- Updated dependencies. [#239](https://github.com/paritytech/parity-common/pull/239)
4 changes: 2 additions & 2 deletions keccak-hash/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

The format is based on [Keep a Changelog].
The format is based on [Keep a Changelog].

[Keep a Changelog]: http://keepachangelog.com/en/1.0.0/

Expand All @@ -9,4 +9,4 @@ The format is based on [Keep a Changelog].

## [0.4.1] - 2019-10-24
### Dependencies
- Updated dependencies (https://github.com/paritytech/parity-common/pull/239)
- Updated dependencies. [#239](https://github.com/paritytech/parity-common/pull/239)
1 change: 0 additions & 1 deletion kvdb-memorydb/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ The format is based on [Keep a Changelog].
## [0.2.0] - 2019-12-19
### Fixed
- `iter_from_prefix` behaviour synced with the `kvdb-rocksdb`

### Changed
- Default column support removed from the API
- Column argument type changed from `Option<u32>` to `u32`
Expand Down
22 changes: 11 additions & 11 deletions kvdb-rocksdb/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The format is based on [Keep a Changelog].
- License changed from GPL3 to dual MIT/Apache2. [#342](https://github.com/paritytech/parity-common/pull/342)

## [0.5.0] - 2019-02-05
- Bump parking_lot to 0.10. [#332](https://github.com/paritytech/parity-common/pull/332
- Bump parking_lot to 0.10. [#332](https://github.com/paritytech/parity-common/pull/332)

## [0.4.2] - 2019-02-04
### Fixes
Expand All @@ -22,27 +22,27 @@ The format is based on [Keep a Changelog].
- Support querying memory footprint via `MallocSizeOf` trait. [#292](https://github.com/paritytech/parity-common/pull/292)

## [0.3.0] - 2019-12-19
- Use `get_pinned` API to save one allocation for each call to `get()` (See [PR #274](https://github.com/paritytech/parity-common/pull/274) for details)
- Rename `drop_column` to `remove_last_column` (See [PR #274](https://github.com/paritytech/parity-common/pull/274) for details)
- Rename `get_cf` to `cf` (See [PR #274](https://github.com/paritytech/parity-common/pull/274) for details)
- Default column support removed from the API (See [PR #278](https://github.com/paritytech/parity-common/pull/278) for details)
- Use `get_pinned` API to save one allocation for each call to `get()`. [#274](https://github.com/paritytech/parity-common/pull/274)
- Rename `drop_column` to `remove_last_column`. [#274](https://github.com/paritytech/parity-common/pull/274)
- Rename `get_cf` to `cf`. [#274](https://github.com/paritytech/parity-common/pull/274)
- Default column support removed from the API. [#278](https://github.com/paritytech/parity-common/pull/278)
- Column argument type changed from `Option<u32>` to `u32`
- Migration
- Column index `None` -> unsupported, `Some(0)` -> `0`, `Some(1)` -> `1`, etc.
- Database must be opened with at least one column and existing DBs has to be opened with a number of columns increased by 1 to avoid having to migrate the data, e.g. before: `Some(9)`, after: `10`.
- `DatabaseConfig::default()` defaults to 1 column
- `Database::with_columns` still accepts `u32`, but panics if `0` is provided
- `Database::open` panics if configuration with 0 columns is provided
- Add `num_keys(col)` to get an estimate of the number of keys in a column (See [PR #285](https://github.com/paritytech/parity-common/pull/285)).
- Remove `ElasticArray` and use the new `DBValue` (alias for `Vec<u8>`) and `DBKey` types from `kvdb`. (See [PR #282](https://github.com/paritytech/parity-common/pull/282/files))
- Add `num_keys(col)` to get an estimate of the number of keys in a column. [#285](https://github.com/paritytech/parity-common/pull/285)
- Remove `ElasticArray` and use the new `DBValue` (alias for `Vec<u8>`) and `DBKey` types from `kvdb`. [#282](https://github.com/paritytech/parity-common/pull/282)

## [0.2.0] - 2019-11-28
- Switched away from using [parity-rocksdb](https://crates.io/crates/parity-rocksdb) in favour of upstream [rust-rocksdb](https://crates.io/crates/rocksdb) (see [PR #257](https://github.com/paritytech/parity-common/pull/257) for details)
- Revamped configuration handling, allowing per-column memory budgeting (see [PR #256](https://github.com/paritytech/parity-common/pull/256) for details)
- Switched away from using [parity-rocksdb](https://crates.io/crates/parity-rocksdb) in favour of upstream [rust-rocksdb](https://crates.io/crates/rocksdb). [#257](https://github.com/paritytech/parity-common/pull/257)
- Revamped configuration handling, allowing per-column memory budgeting. [#256](https://github.com/paritytech/parity-common/pull/256)
### Dependencies
- rust-rocksdb v0.13

## [0.1.6] - 2019-10-24
- Updated to 2018 edition idioms (https://github.com/paritytech/parity-common/pull/237)
- Updated to 2018 edition idioms. [#237](https://github.com/paritytech/parity-common/pull/237)
### Dependencies
- Updated dependencies (https://github.com/paritytech/parity-common/pull/239)
- Updated dependencies. [#239](https://github.com/paritytech/parity-common/pull/239)
7 changes: 7 additions & 0 deletions kvdb-shared-tests/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Changelog

The format is based on [Keep a Changelog].

[Keep a Changelog]: http://keepachangelog.com/en/1.0.0/

## [Unreleased]
2 changes: 1 addition & 1 deletion kvdb-web/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ The format is based on [Keep a Changelog].

## [0.1.1] - 2019-10-24
### Dependencies
- Updated dependencies (https://github.com/paritytech/parity-common/pull/239)
- Updated dependencies. [#239](https://github.com/paritytech/parity-common/pull/239)
6 changes: 3 additions & 3 deletions kvdb/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ The format is based on [Keep a Changelog].
- Default column support removed from the API
- Column argument type changed from `Option<u32>` to `u32`
- Migration `None` -> unsupported, `Some(0)` -> `0`, `Some(1)` -> `1`, etc.
- Remove `ElasticArray` and change `DBValue` to be a type alias for `Vec<u8>` and add a `DBKey` backed by a `SmallVec`. (See [PR #282](https://github.com/paritytech/parity-common/pull/282/files))
- Remove `ElasticArray` and change `DBValue` to be a type alias for `Vec<u8>` and add a `DBKey` backed by a `SmallVec`. [#282](https://github.com/paritytech/parity-common/pull/282)

## [0.1.1] - 2019-10-24
### Dependencies
- Updated dependencies (https://github.com/paritytech/parity-common/pull/239)
- Updated dependencies. [#239](https://github.com/paritytech/parity-common/pull/239)
### Changed
- Migrated to 2018 edition (https://github.com/paritytech/parity-common/pull/205)
- Migrated to 2018 edition. [#205](https://github.com/paritytech/parity-common/pull/205)
6 changes: 3 additions & 3 deletions parity-bytes/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ The format is based on [Keep a Changelog].

## [0.1.1] - 2019-10-24
### Dependencies
- Updated dependencies (https://github.com/paritytech/parity-common/pull/239)
### Added
- Added no-std support (https://github.com/paritytech/parity-common/pull/154)
- Updated dependencies. [#239](https://github.com/paritytech/parity-common/pull/239)
### Added
- Added no-std support. [#154](https://github.com/paritytech/parity-common/pull/154)
16 changes: 8 additions & 8 deletions parity-crypto/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
# Changelog

The format is based on [Keep a Changelog].
The format is based on [Keep a Changelog].

[Keep a Changelog]: http://keepachangelog.com/en/1.0.0/

## [Unreleased]
- License changed from GPL3 to dual MIT/Apache2. [#342](https://github.com/paritytech/parity-common/pull/342)

## [0.5.0] - 2020-02-08
- Remove `inv()` from `SecretKey` (breaking) (https://github.com/paritytech/parity-common/pull/258)
- `Generate::generate()` does not return error (https://github.com/paritytech/parity-common/pull/258)
- `Secp256k1` is no longer exported (https://github.com/paritytech/parity-common/pull/258)
- Remove `public_is_valid()` as it is now impossible to create invalid public keys (https://github.com/paritytech/parity-common/pull/258)
- 0-valued `Secp::Message`s are disallowed (signatures on them are forgeable for all keys) (https://github.com/paritytech/parity-common/pull/258)
- Switch to upstream `rust-secp256k1` at v0.17.2 (https://github.com/paritytech/parity-common/pull/258)
- make `rustc_hex` dependency optional (https://github.com/paritytech/parity-common/pull/337)
- Remove `inv()` from `SecretKey` (breaking). [#258](https://github.com/paritytech/parity-common/pull/258)
- `Generate::generate()` does not return error. [#258](https://github.com/paritytech/parity-common/pull/258)
- `Secp256k1` is no longer exported. [#258](https://github.com/paritytech/parity-common/pull/258)
- Remove `public_is_valid()` as it is now impossible to create invalid public keys. [#258](https://github.com/paritytech/parity-common/pull/258)
- 0-valued `Secp::Message`s are disallowed (signatures on them are forgeable for all keys). [#258](https://github.com/paritytech/parity-common/pull/258)
- Switch to upstream `rust-secp256k1` at v0.17.2. [#258](https://github.com/paritytech/parity-common/pull/258)
- make `rustc_hex` dependency optional. [#337](https://github.com/paritytech/parity-common/pull/337)
6 changes: 3 additions & 3 deletions parity-util-mem/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The format is based on [Keep a Changelog].
- License changed from GPL3 to dual MIT/Apache2. [#342](https://github.com/paritytech/parity-common/pull/342)

## [0.5.1] - 2019-02-05
- Add different mode for malloc_size_of_is_0 macro dealing with generics #334. [#332](https://github.com/paritytech/parity-common/pull/334)
- Add different mode for malloc_size_of_is_0 macro dealing with generics. [#334](https://github.com/paritytech/parity-common/pull/334)

## [0.5.0] - 2019-02-05
- Bump parking_lot to 0.10. [#332](https://github.com/paritytech/parity-common/pull/332)
Expand All @@ -27,8 +27,8 @@ The format is based on [Keep a Changelog].
- Added default implementation of `MallocSizeOf` for tuples up to 12. [#300](https://github.com/paritytech/parity-common/pull/300)

## [0.3.0] - 2019-12-19
- Remove `MallocSizeOf` impls for `ElasticArray` and implement it for `SmallVec` (32 and 36). (See [PR #282](https://github.com/paritytech/parity-common/pull/282/files))
- Remove `MallocSizeOf` impls for `ElasticArray` and implement it for `SmallVec` (32 and 36). [#282](https://github.com/paritytech/parity-common/pull/282)

## [0.2.1] - 2019-10-24
### Dependencies
- Updated dependencies (https://github.com/paritytech/parity-common/pull/239)
- Updated dependencies. [#239](https://github.com/paritytech/parity-common/pull/239)
7 changes: 7 additions & 0 deletions parity-util-mem/derive/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Changelog

The format is based on [Keep a Changelog].

[Keep a Changelog]: http://keepachangelog.com/en/1.0.0/

## [Unreleased]
6 changes: 3 additions & 3 deletions plain_hasher/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Changelog

The format is based on [Keep a Changelog].
The format is based on [Keep a Changelog].

[Keep a Changelog]: http://keepachangelog.com/en/1.0.0/

## [Unreleased]
- License changed from MIT to dual MIT/Apache2. [#342](https://github.com/paritytech/parity-common/pull/342)

## [0.2.2] - 2019-10-24
- Migrated to 2018 edition (https://github.com/paritytech/parity-common/pull/213)
- Migrated to 2018 edition. [#213](https://github.com/paritytech/parity-common/pull/213)
### Dependencies
- Updated dependencies (https://github.com/paritytech/parity-common/pull/239)
- Updated dependencies. [#239](https://github.com/paritytech/parity-common/pull/239)
2 changes: 1 addition & 1 deletion primitive-types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ The format is based on [Keep a Changelog].

## [0.6.1] - 2019-10-24
### Dependencies
- Updated dependencies (https://github.com/paritytech/parity-common/pull/239)
- Updated dependencies. [#239](https://github.com/paritytech/parity-common/pull/239)
2 changes: 1 addition & 1 deletion primitive-types/impls/serde/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ The format is based on [Keep a Changelog].

## [0.2.3] - 2019-10-29
### Fixed
- Fixed a bug in empty slice serialization (https://github.com/paritytech/parity-common/pull/253)
- Fixed a bug in empty slice serialization. [#253](https://github.com/paritytech/parity-common/pull/253)
2 changes: 1 addition & 1 deletion rlp-derive/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ The format is based on [Keep a Changelog].

## [Unreleased]

## [0.1.0] - 2020-02-12
## [0.1.0] - 2020-02-13
- Extracted from parity-ethereum repo. [#343](https://github.com/paritytech/parity-common/pull/343)
2 changes: 1 addition & 1 deletion rlp-derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ quote = "1.0.2"
proc-macro2 = "1.0.8"

[dev-dependencies]
rlp = "0.4.0"
rlp = "0.4.4"
2 changes: 1 addition & 1 deletion rlp-derive/src/de.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2015-2020 Parity Technologies (UK) Ltd.
// Copyright 2020 Parity Technologies
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
Expand Down
2 changes: 1 addition & 1 deletion rlp-derive/src/en.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2015-2020 Parity Technologies (UK) Ltd.
// Copyright 2020 Parity Technologies
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
Expand Down
2 changes: 1 addition & 1 deletion rlp-derive/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2015-2020 Parity Technologies (UK) Ltd.
// Copyright 2020 Parity Technologies
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
Expand Down
2 changes: 1 addition & 1 deletion rlp-derive/tests/rlp.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2015-2020 Parity Technologies (UK) Ltd.
// Copyright 2020 Parity Technologies
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
Expand Down
10 changes: 5 additions & 5 deletions rlp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
# Changelog

The format is based on [Keep a Changelog].
The format is based on [Keep a Changelog].

[Keep a Changelog]: http://keepachangelog.com/en/1.0.0/

## [Unreleased]

## [0.4.4] - 2019-11-20
### Added
- Method `Rlp::at_with_offset` (https://github.com/paritytech/parity-common/pull/269)
- Method `Rlp::at_with_offset`. [#269](https://github.com/paritytech/parity-common/pull/269)

## [0.4.3] - 2019-10-24
### Dependencies
- Updated dependencies (https://github.com/paritytech/parity-common/pull/239)
- Updated dependencies. [#239](https://github.com/paritytech/parity-common/pull/239)
### Fixed
- Fixed nested unbounded lists (https://github.com/paritytech/parity-common/pull/203)
- Fixed nested unbounded lists. [#203](https://github.com/paritytech/parity-common/pull/203)
### Added
- Added no-std support (https://github.com/paritytech/parity-common/pull/206)
- Added no-std support. [#206](https://github.com/paritytech/parity-common/pull/206)
4 changes: 2 additions & 2 deletions runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ The format is based on [Keep a Changelog].

## [Unreleased]

## [0.1.1] - 2019-11-25
## [0.1.1] - 2020-02-11
### Changed
- Moved to parity common repo, prepared for publishing (https://github.com/paritytech/parity-common/pull/271)
- Moved to parity common repo, prepared for publishing. [#271](https://github.com/paritytech/parity-common/pull/271)
6 changes: 3 additions & 3 deletions trace-time/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Changelog

The format is based on [Keep a Changelog].
The format is based on [Keep a Changelog].

[Keep a Changelog]: http://keepachangelog.com/en/1.0.0/

## [Unreleased]
- License changed from GPL3 to dual MIT/Apache2. [#342](https://github.com/paritytech/parity-common/pull/342)

## [0.1.2] - 2019-10-24
- Migrated to 2018 edition (https://github.com/paritytech/parity-common/pull/232)
- Migrated to 2018 edition. [#232](https://github.com/paritytech/parity-common/pull/232)
### Dependencies
- Updated dependencies (https://github.com/paritytech/parity-common/pull/239)
- Updated dependencies. [#239](https://github.com/paritytech/parity-common/pull/239)
6 changes: 3 additions & 3 deletions transaction-pool/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Changelog

The format is based on [Keep a Changelog].
The format is based on [Keep a Changelog].

[Keep a Changelog]: http://keepachangelog.com/en/1.0.0/

## [Unreleased]
- License changed from GPL3 to dual MIT/Apache2. [#342](https://github.com/paritytech/parity-common/pull/342)

## [2.0.2] - 2019-10-24
- Updated to 2018 edition idioms (https://github.com/paritytech/parity-common/pull/237)
- Updated to 2018 edition idioms. [#237](https://github.com/paritytech/parity-common/pull/237)
### Dependencies
- Updated dependencies (https://github.com/paritytech/parity-common/pull/239)
- Updated dependencies. [#239](https://github.com/paritytech/parity-common/pull/239)
8 changes: 4 additions & 4 deletions triehash/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# Changelog

The format is based on [Keep a Changelog].
The format is based on [Keep a Changelog].

[Keep a Changelog]: http://keepachangelog.com/en/1.0.0/

## [Unreleased]
- License changed from GPL3 to dual MIT/Apache2. [#342](https://github.com/paritytech/parity-common/pull/342)

## [0.8.2] - 2019-12-15
- Added no-std support (https://github.com/paritytech/parity-common/pull/280)
- Added no-std support. [#280](https://github.com/paritytech/parity-common/pull/280)
## [0.8.1] - 2019-10-24
- Migrated to 2018 edition (https://github.com/paritytech/parity-common/pull/214)
- Migrated to 2018 edition. [#214](https://github.com/paritytech/parity-common/pull/214)
### Dependencies
- Updated dependencies (https://github.com/paritytech/parity-common/pull/239)
- Updated dependencies. [#239](https://github.com/paritytech/parity-common/pull/239)
10 changes: 5 additions & 5 deletions uint/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# Changelog

The format is based on [Keep a Changelog].
The format is based on [Keep a Changelog].

[Keep a Changelog]: http://keepachangelog.com/en/1.0.0/

## [Unreleased]

## [0.8.2] - 2019-10-24
### Fixed
- Fixed 2018 edition imports (https://github.com/paritytech/parity-common/pull/237)
- Removed `uninitialized` usage (https://github.com/paritytech/parity-common/pull/238)
- Fixed 2018 edition imports. [#237](https://github.com/paritytech/parity-common/pull/237)
- Removed `uninitialized` usage. [#238](https://github.com/paritytech/parity-common/pull/238)
### Dependencies
- Updated dependencies (https://github.com/paritytech/parity-common/pull/239)
- Updated dependencies. [#239](https://github.com/paritytech/parity-common/pull/239)
### Changed
- Modified AsRef impl (https://github.com/paritytech/parity-common/pull/196)
- Modified AsRef impl. [#196](https://github.com/paritytech/parity-common/pull/196)