kwik v0.3.0._ Release Notes

Release Date: 2020-01-24 // about 4 years ago
  • Removed (Breaking) ......................

    • Module core. It was an empty module only to provide transitive dependencies to most common used modules.

    ➕ Added .....

    • 🐧 linux and windows targets (x64 arch) Thanks to drodel_ and michellesantos_

    .. _drodel: https://github.com/drodel .. _michellesantos: https://github.com/michellesantos

    Migration from 0.2.0 ....................

    ⚡️ #. Before updating to 0.3.0 (so using version 0.2.0)

    #. Remove all usage of deprecated members
    
       * Use ``Generator.withSamples`` instead of ``Generator.samples``
    
       * Use ``Generator.randomSequence`` instead of ``Generator.randoms``
    
    #. Replace dependencies of module ``core`` by ``evaluator`` and ``generator-stdlib``
        Example with gradle for JVM project:
    
        .. code-block:: kotlin
    
            dependencies {
                testImplementation("com.github.jcornaz.kwik:kwik-evaluator-jvm:0.2.0")
                testImplementation("com.github.jcornaz.kwik:kwik-generator-stdlib-jvm:0.2.0")
            }