All Versions
5
Latest Version
Avg Release Cycle
97 days
Latest Release
1782 days ago

Changelog History

  • v1.2.2 Changes

    June 10, 2019

    ๐Ÿ‘ Scala 2.13 support

  • v1.2.1 Changes

    February 20, 2019

    Perfomance improvements

    .map and .foreach methods in hot code replaced to while loops.

    โœ… About 30% acceleration for sbt test achieved.

  • v1.2.0 Changes

    November 11, 2018

    ๐Ÿ“ฆ Package name simplified

    Solved #3.
    โœ‚ Removed useless domain in package name. New import api:

    import scalaphash.PHash.\_
    
  • v1.1.1 Changes

    November 11, 2018

    ๐Ÿ›  Fixed #6

  • v1.1.0 Changes

    May 19, 2018

    Safe API

    Solved #1. Now you can compute hashes in two ways:

    val hash1: Either[Throwable, DCTHash] = dctHash(image) // safe wayval hash2: DCTHash = unsafeDctHash(image) // can throw an exception
    

    ๐Ÿ‘Œ Improved readability

    โž• Added trait PHashAlgebra with public functions signatures and docs for comfortable API overview.