* Fix checksum calculation bug introduced in v1.0.16. This will break any usage that relies on simplefix calculating the checksum value: most users will need to upgrade.
1.0.16
* Add missing EXECTYPE constants * Better conversion to string (40) * Better installation instructions (45) * Add testing for large (64 bit) integer values (52) * Fixed handling of IntEnum tag values (56) * Added testing for CPython 3.11 (Released: 2022-10-24) * Dropped testing for Python 3.6 (EOL: 2021-12-31)
1.0.15
* Add framework for parser options * Add parsing error exceptions * Support parsing of empty values (34) * Updated programmer's guide
1.0.14
* Fix typo in constant * Add additional tags
1.0.13
* Allow configuration of alternative end-of-message indicators. This is useful for parsing log files or mangled FIX with a non-standard terminating tag. * Added various tags and their values (thanks Christian Oudard). * Now tested with CPython 3.8; no longer tested with CPython 3.3.
1.0.12
* Fix parser issue when parsing a message where the data field length is parsed from one call to `append`, but the content field is appended and parsed later (ie. append, parse -> None, append, parse -> msg).