Skip to content

Commit

Permalink
Add missing CHANGELOG entries.
Browse files Browse the repository at this point in the history
  • Loading branch information
nuttycom committed Mar 5, 2024
1 parent 5675a76 commit 8955cfc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
11 changes: 7 additions & 4 deletions components/zcash_protocol/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,13 @@ The entries below are relative to the `zcash_primitives` crate as of the tag
### Changed
- `zcash_protocol::value::COIN` has been changed from an `i64` to a `u64`
- `zcash_protocol::value::MAX_MONEY` has been changed from an `i64` to a `u64`
- `zcash_protocol::consensus::Parameters` has been split into two traits, with
the newly added `NetworkConstants` trait providing all network constant
accessors. Also, the `address_network` method has been replaced with a new
`network_type` method that serves the same purpose. A blanket impl of
`NetworkConstants` is provided for all types that implement `Parameters`,
so call sites for methods that have moved to `NetworkConstants` should
remain unchanged (though they may require an additional `use` statement.)

### Removed
- From `zcash_protocol::value`:
Expand All @@ -46,7 +53,3 @@ The entries below are relative to the `zcash_primitives` crate as of the tag
- `TryFrom<sapling::value::NoteValue> for NonNegativeAmount`
- `impl AddAssign for NonNegativeAmount`
- `impl SubAssign for NonNegativeAmount`
- `zcash_protocol::consensus::Parameters` has been split into two traits, with
the `NetworkConstants` trait providing all network constant accessors. Also,
the `address_network` method has been replaced with a new `network_type`
method that serves the same purpose.
2 changes: 2 additions & 0 deletions zcash_client_sqlite/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ and this library adheres to Rust's notion of
- `zcash_client_sqlite::error::SqliteClientError` has changed variants:
- Added `AddressGeneration`
- Removed `DiversifierIndexOutOfRange`
- `zcash_client_sqlite::wallet::init::WalletMigrationError` has added variant
`AddressGeneration`

## [0.9.0] - 2024-03-01

Expand Down

0 comments on commit 8955cfc

Please sign in to comment.