* Fix `weights_le()` etc. * `set_outcomes()` is now public.
0.4.3
* `min_outcome()`, `max_outcome()` now accept multiple dice. * Fix slice range going below zero. * `num_dice` is now an optional parameter for `keep*()` and `pool()`. Exactly one out of `num_dice`, `min_outcomes`, and `max_outcomes` should be provided. * Removed right-side cast for `` operator, as it leads to confusion with either other operator casting or `d()` casting. * Replaced key-value sequence option for `die()` with a sequence of weight-1 outcomes. * Add `has_zero_weights()` method to dice. * `align()`, `align_range()` are now public.
0.4.2
* Remove numpy install dependency.
0.4.1
* Use the `` operator and `d()` instead of `*` for "roll the die on the left, then roll that many dice on the right and sum". * `*` operator now multiplies. * Add `/` operator. * Add `median_left(), median_right(), ppf(), ppf_left(), ppf_right(), sample(), cmp(), sign()`.
0.4.0
No longer numpy-based. Major changes:
* API completely reworked. * Weights are Python `int`s. This decreases performance but produces all exact results. * New `MultiDie` class representing multivariate distributions. * `PoolScorer` classes merged to a single `PoolEval` class.
0.3.3
This will most likely be the last numpy-based version.
* Pool scorers skip zero-weight outcomes. * Removed `__bool__` since zero-weight dice are no longer allowed.