Skip to content

Commit

Permalink
Mark version as v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jontingvold committed Apr 8, 2020
1 parent 5b3a207 commit ad796de
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 17 deletions.
18 changes: 3 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 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**

## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Expand Down
2 changes: 1 addition & 1 deletion pyrankvote/__init__.py
Original file line number Diff line number Diff line change
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__ = '1.0.9'
__version__ = '2.0.0'

__all__ = [
'Candidate',
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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, '
Expand Down

0 comments on commit ad796de

Please sign in to comment.