Skip to content

Commit

Permalink
Spellfix README and update version number to 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jontingvold committed Apr 8, 2020
1 parent ad796de commit 5cf3d59
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -114,7 +114,7 @@ More examples in [examples.py](./examples.py)
## Versions

- 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 most RCV-systems. The old practice can be reenabled with `pyrankvote.single\_transferable\_vote(candidates, ballots, pick_random_if_blank=True)`
- 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 RCV-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**

Expand Down
2 changes: 1 addition & 1 deletion pyrankvote/__init__.py
Expand Up @@ -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__ = '2.0.0'
__version__ = '2.0.1'

__all__ = [
'Candidate',
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -11,7 +11,7 @@ def my_test_suite():

setuptools.setup(
name='pyrankvote',
version='2.0.0',
version='2.0.1',
author='Jon Tingvold',
author_email='jon.tingvold@gmail.com',
description='PyRankVote is a python library for different ranked voting methods, '
Expand Down

0 comments on commit 5cf3d59

Please sign in to comment.