diff --git a/README.md b/README.md index 803d6b5..ca1e582 100644 --- a/README.md +++ b/README.md @@ -113,22 +113,10 @@ More examples in [examples.py](./examples.py) ## Versions -#### Version 2.0 (2020-04-08) - -First release I assume is stable enough to incurrage use. - -##### Version (2020-04-08) - -#### Version - - - -#### Version - - v2.0 (2020-04-08): **Compact round results and standard STV-procedure** - - Non-backward compatible change: If ballot exhausted, the ballot is now thrown away instead of picking a candidate at random. This is more in line with standard practice. The old practice can be reenabled with ´pyrankvote.single\_transferable\_vote(candidates, ballots, pick_random_if_blank=True)´ -- v1.0 (2019-09-15): **Stable release.** First release I assume is stable enough to incurrage use. -- v0.0 (2019-08-09): **Pre release** + - Non-backward compatible change: If ballot exhausted, the ballot is now thrown away instead of picking a candidate at random. This is more in line with most STV-systems. The old practice can be reenabled with `pyrankvote.single\_transferable\_vote(candidates, ballots, pick_random_if_blank=True)` +- v1.0 (2019-09-15): **Stable release.** First release I assume is stable enough to encourage use. +- v0.0 (2019-08-09): **Pre-release** ## Contributing Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. diff --git a/pyrankvote/__init__.py b/pyrankvote/__init__.py index 7af19f1..1fd787a 100644 --- a/pyrankvote/__init__.py +++ b/pyrankvote/__init__.py @@ -2,7 +2,7 @@ from pyrankvote.single_seat_ranking_methods import instant_runoff_voting from pyrankvote.multiple_seat_ranking_methods import single_transferable_vote, preferential_block_voting -__version__ = '1.0.9' +__version__ = '2.0.0' __all__ = [ 'Candidate', diff --git a/setup.py b/setup.py index 9e5145d..adc2dbe 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ def my_test_suite(): setuptools.setup( name='pyrankvote', - version='1.0.9', + version='2.0.0', author='Jon Tingvold', author_email='jon.tingvold@gmail.com', description='PyRankVote is a python library for different ranked voting methods, '