diff --git a/HISTORY.rst b/HISTORY.rst index 66104d3..7c63219 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,11 @@ Release History --------------- +0.1.2 (2019-07-11) +~~~~~~~~~~~~~~~~~~ + +* Bugfix Dhondt/Jefferson apportionment method + 0.1.1 (2018-01-08) ~~~~~~~~~~~~~~~~~~ diff --git a/LICENSE.txt b/LICENSE.txt index cd74552..9a42aaf 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2018 Christopher Flynn +Copyright (c) 2018-2019 Christopher Flynn Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pyproject.toml b/pyproject.toml index 95007e0..2aa7782 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,7 +22,7 @@ exclude = ''' [tool.poetry] name = "voting" -version = "0.1.1" +version = "0.1.2" description = "Voting and election related functions." authors = ["Flynn "] readme = "README.rst" diff --git a/voting/__version__.py b/voting/__version__.py index 3baae37..a7f9b00 100644 --- a/voting/__version__.py +++ b/voting/__version__.py @@ -2,9 +2,9 @@ __title__ = "voting" __description__ = "Voting and election related functions." __url__ = "https://github.com/crflynn/voting" -__version__ = "0.1.1" +__version__ = "0.1.2" __author__ = "Christopher Flynn" __author_email__ = "crf204@gmail.com" __license__ = "MIT" -__copyright__ = "Copyright 2018 Christopher Flynn" -__docs_copyright__ = "2018 Christopher Flynn" +__copyright__ = "Copyright 2018-2019 Christopher Flynn" +__docs_copyright__ = "2018-2019 Christopher Flynn"