diff --git a/CHANGES.md b/CHANGES.md index 33e4dc534..47eb16558 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,25 @@ +# v4.7.0, 2019-10-23 + +New Moran process mechanics, new strategy implementations, drop support for +python 3.5 and various minor fixes. + +- Drop support for python 3.5: + https://github.com/Axelrod-Python/Axelrod/pull/1255 + https://github.com/Axelrod-Python/Axelrod/pull/1254 +- New strategies: + https://github.com/Axelrod-Python/Axelrod/pull/1263 +- Bug fix: + https://github.com/Axelrod-Python/Axelrod/pull/1260 +- Documentation fixes: + https://github.com/Axelrod-Python/Axelrod/pull/1266 + https://github.com/Axelrod-Python/Axelrod/pull/1262 +- Implement Evolvable Player for Moran processes: + https://github.com/Axelrod-Python/Axelrod/pull/1267 + https://github.com/Axelrod-Python/Axelrod/pull/1256 +- Update citations: https://github.com/Axelrod-Python/Axelrod/pull/1249 + +https://github.com/Axelrod-Python/Axelrod/compare/v4.7.0...v4.6.0 + # v4.6.0, 2019-05-20 New history class, new strategy from Axelrod's first tournament and a number of diff --git a/axelrod/version.py b/axelrod/version.py index db01fb213..8355eb42a 100644 --- a/axelrod/version.py +++ b/axelrod/version.py @@ -1 +1 @@ -__version__ = "4.6.0" +__version__ = "4.7.0"