The format is based on Keep a Changelog.
- Add standard non-overflowing signature parsing
Signature::parse_standard
. The previous behaviorSignature::parse
is considered non-standard and renamed toSignature::parse_overflowing
. Unless you have a specific need, you should switch to use the newSignature::parse_standard
function. (PR #67)
- Implement
std::error::Error
andDisplay
forError
. (PR #29) - Fix the PartialEq impl of Field. (PR #30)
- Add
LowerHex
implementation forSecretKey
andScalar
. (PR #32) - Put signing behind feature flag. (PR #33)