diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 269a34f..7cb9e94 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.4.3 +current_version = 0.4.4 commit = True tag = True diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 9cc63eb..0117be6 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,11 @@ Changelog ========= +v0.4.4 (2018-03-15) +------------------- + +* Tag K66R as implemented by Mikkelson + v0.4.3 (2018-02-07) ------------------- diff --git a/requirements.txt b/requirements.txt index 9d25f51..6cf4de9 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -axelrod>=4.0.0 +axelrod>=4.1.0 diff --git a/setup.py b/setup.py index 73bc938..faec03a 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ def read(*names, **kwargs): setup( name='axelrod-fortran', - version='0.4.3', + version='0.4.4', license='MIT license', description='Python wrapper for strategies originally written in Fortran', long_description='%s\n%s' % ( @@ -54,7 +54,7 @@ def read(*names, **kwargs): 'Topic :: Utilities', ], install_requires=[ - 'axelrod >= 4.0.0', + 'axelrod >= 4.1.0', ], python_requires=">=3.5", ) diff --git a/src/axelrod_fortran/__init__.py b/src/axelrod_fortran/__init__.py index 6db8bba..0be97be 100644 --- a/src/axelrod_fortran/__init__.py +++ b/src/axelrod_fortran/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.4.3" +__version__ = "0.4.4" from .player import Player from .strategies import (all_strategies, characteristics, diff --git a/src/axelrod_fortran/strategies.py b/src/axelrod_fortran/strategies.py index f190fd5..507024d 100644 --- a/src/axelrod_fortran/strategies.py +++ b/src/axelrod_fortran/strategies.py @@ -182,7 +182,7 @@ 'author': 'Mark F Batell', 'original_rank': 47}, 'k66r': { - 'axelrod-python_class': None, + 'axelrod-python_class': axl.Mikkelson, 'stochastic': False, 'author': 'Ray Mikkelson', 'original_rank': 20},