Skip to content

1.10.0

Compare
Choose a tag to compare
@oschwald oschwald released this 09 Feb 17:53
· 103 commits to main since this release
  • When using the pure PHP reader, unsigned integers up to PHP_MAX_INT
    will now be integers in PHP rather than strings. Previously integers
    greater than 2^24 on 32-bit platforms and 2^56 on 64-bit platforms
    would be strings due to the use of gmp or bcmath to decode them.
    Reported by Alejandro Celaya. GitHub #119.