Skip to content
This repository has been archived by the owner on Aug 24, 2021. It is now read-only.

Commit

Permalink
Prepare 0.3.0-alpha.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jcornaz committed Dec 5, 2019
1 parent 341e5d8 commit 2b9f90a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
18 changes: 11 additions & 7 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,20 @@ and this project adheres to `Semantic Versioning`_.
Unreleased_
-----------

.. endUnreleasedBlock
0.3.0-alpha.1_ - 2019-12-05
---------------------------

Removed **(Breaking)**
.......

* ``Generator.samples`` property has been removed.
Now the generator have to have a probability to generate the edge cases in ``generate``.
The recommended option when building a generator, is to use ``withSamples``
Now the generator have to have a probability to generate the edge cases in ``generate``.
The recommended option when building a generator, is to use ``withSamples``

* ``Generator.randoms`` function has been removed.
``Generator.generate`` or ``Generator.randomSequence`` should be used instead.
``Generator.generate`` or ``Generator.randomSequence`` should be used instead.

Changed
.......
Expand All @@ -35,15 +40,13 @@ Added
.....

* ``ensureAtLeastOne`` utility in evaluation context,
that will force property evaluation until a given predicate gets satisfied
that will force property evaluation until a given predicate gets satisfied

Dependencies Updated
....................

* Kotlin (from ``1.3.60`` to ``1.3.61``)

.. endUnreleasedBlock
0.2.0_ - 2019-11-19
-------------------

Expand Down Expand Up @@ -242,7 +245,8 @@ Added
* ``withSample`` and ``withNull`` to inject constants values to be always tested
* ``zip`` operator to combine two given generators

.. _Unreleased: https://github.com/jcornaz/kwik/compare/0.2.0...master
.. _Unreleased: https://github.com/jcornaz/kwik/compare/0.3.0-alpha.1...master
.. _0.3.0-alpha.1: https://github.com/jcornaz/kwik/compare/0.2.0...0.3.0-alpha.1
.. _0.2.0: https://github.com/jcornaz/kwik/compare/0.2.0-rc.1...0.2.0
.. _0.2.0-rc.1: https://github.com/jcornaz/kwik/compare/0.2.0-beta.2...0.2.0-rc.1
.. _0.2.0-beta.2: https://github.com/jcornaz/kwik/compare/0.2.0-beta.1...0.2.0-beta.2
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -111,12 +111,12 @@ Example of setup using gradle.
repositories {
jcenter()
maven { url = uri("https://dl.bintray.com/kwik/preview") } // For preview versions only
}
dependencies {
testCompile("com.github.jcornaz.kwik:kwik-core-jvm:0.2.0")
testCompile("com.github.jcornaz.kwik:kwik-core-jvm:0.3.0-alpha.1")
}
.. endGradleSetup
.. startReferenceToSetup
Expand Down

0 comments on commit 2b9f90a

Please sign in to comment.