Skip to content

ezcheck 0.1.7

Latest
Compare
Choose a tag to compare
@Metaphorme Metaphorme released this 23 Feb 06:31
· 2 commits to master since this release
8c21f3e

What's Changed

  • ⚠️ Breaking change
    The output format of the xxHash series algorithms in ezcheck 0.1.7 is the same as that of Cyan4973/xxHash and is no longer compatible with the output format of ezcheck 0.1.6. If you have already used ezcheck 0.1.6, for the XXHASH32 and XXHASH64 algorithms, please remove the 0x prefix at the beginning of the output. For XXHASH3_64, please change the 0x prefix at the beginning of the output to XXH3_. For example,

    Algorithm Old Format New Format
    XXHASH32 0x0163d3a2 0163d3a2
    XXHASH64 0x4a34911ba20e6c30 4a34911ba20e6c30
    XXHASH3_64 0x802c0db623389036 XXH3_802c0db623389036
  • New algorithm alias
    Now, you can use xxhash32 or xxh32 to use the XXHASH32 algorithm; you can use xxhash64 or xxh64 to use the XXHASH64 algorithm; you can use xxh3, xxh3_64, xxh3-64, xxh3/64, xxhash3_64, xxhash3-64, or xxhash3/64 to use the XXHASH3_64 algorithm.

  • Update dependencies.

Full Changelog: 0.1.6...0.1.7