Releases: pyfisch/httpdate
Releases · pyfisch/httpdate
v1.0.2: Improved performance and benchmarking, no more unsafe
v1.0.1: Reject inconsistent date strings
Bugfix release. In version 1.0.0 the crate would accept bogus dates with a wrong weekday. This resulted in dates for the same instant not being equal.
- Check if parsed date strings are self-consistent i.e. the day actually exists in the calendar.
v1.0.0
Finally release a stable v1.0! 🥳
The crate is mostly unchanged from v0.3, you should be able to upgrade without any issues.
- Implement
Hash
forHttpDate
- Fix wrong (default) implementation of
Ord
, nowOrd
andPartialOrd
agree on the ording. (Found using clippy) - Remove public
From<ParseIntError> for Error
implementation. (Was only useful internally) - Switch to GitHub actions
- Use default docs.rs docs instead of self-hosted docs.
v1.0.0-alpha
Remove Travis CI
v0.3.2
v0.3.1: Increment version to 0.3.1
Now with faster formatting & updated fuzzer.