Skip to content

Commit 5005cde

Browse files
committed
Release 2.5.0
1 parent b174daa commit 5005cde

File tree

3 files changed

+59
-1
lines changed

3 files changed

+59
-1
lines changed

CHANGES.md

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,56 @@
1+
# v2.5.0, 2017-02-11
2+
3+
Internal improvements, type hints, documentation and a new strategy
4+
5+
- New strategy: ShortMem
6+
https://github.com/Axelrod-Python/Axelrod/pull/857
7+
- A number of type hints added to the library
8+
https://github.com/Axelrod-Python/Axelrod/pull/828
9+
https://github.com/Axelrod-Python/Axelrod/pull/831
10+
https://github.com/Axelrod-Python/Axelrod/pull/832
11+
https://github.com/Axelrod-Python/Axelrod/pull/833
12+
https://github.com/Axelrod-Python/Axelrod/pull/834
13+
https://github.com/Axelrod-Python/Axelrod/pull/835
14+
https://github.com/Axelrod-Python/Axelrod/pull/836
15+
https://github.com/Axelrod-Python/Axelrod/pull/840
16+
https://github.com/Axelrod-Python/Axelrod/pull/846
17+
https://github.com/Axelrod-Python/Axelrod/pull/847
18+
https://github.com/Axelrod-Python/Axelrod/pull/849
19+
https://github.com/Axelrod-Python/Axelrod/pull/850
20+
https://github.com/Axelrod-Python/Axelrod/pull/851
21+
https://github.com/Axelrod-Python/Axelrod/pull/853
22+
https://github.com/Axelrod-Python/Axelrod/pull/854
23+
https://github.com/Axelrod-Python/Axelrod/pull/856
24+
https://github.com/Axelrod-Python/Axelrod/pull/858
25+
https://github.com/Axelrod-Python/Axelrod/pull/824
26+
https://github.com/Axelrod-Python/Axelrod/pull/821
27+
https://github.com/Axelrod-Python/Axelrod/pull/815
28+
https://github.com/Axelrod-Python/Axelrod/pull/814
29+
- internal improvement to how players are cloned
30+
https://github.com/Axelrod-Python/Axelrod/pull/817
31+
- Refactor/removal of dynamic classes
32+
https://github.com/Axelrod-Python/Axelrod/pull/852
33+
- Run windows CI for py3.6
34+
https://github.com/Axelrod-Python/Axelrod/pull/844
35+
- Run mypi on travis
36+
https://github.com/Axelrod-Python/Axelrod/pull/843
37+
https://github.com/Axelrod-Python/Axelrod/pull/837
38+
- Small update to the readme
39+
https://github.com/Axelrod-Python/Axelrod/pull/829
40+
- Docstring fix for random
41+
https://github.com/Axelrod-Python/Axelrod/pull/826
42+
- Improve efficiency of neural network strategy
43+
https://github.com/Axelrod-Python/Axelrod/pull/819
44+
- Improve efficiency of cycle detection
45+
https://github.com/Axelrod-Python/Axelrod/pull/809
46+
- Refactor of a number of tests and test documentation
47+
https://github.com/Axelrod-Python/Axelrod/pull/820
48+
- Large refactor thanks to dropping of python 2
49+
https://github.com/Axelrod-Python/Axelrod/pull/818
50+
51+
Here are all the commits for this PR:
52+
https://github.com/Axelrod-Python/Axelrod/compare/v2.3.0...v2.4.0
53+
154
# v2.4.0, 2017-01-05
255

356
New machine learning strategies and moran processes on graphs.

axelrod/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.4.0"
1+
__version__ = "2.5.0"

setup.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,9 @@
2121
package_data={
2222
'': ['axelrod/data/*.csv'],
2323
},
24+
classifiers=[
25+
'Programming Language :: Python :: 3.5',
26+
'Programming Language :: Python :: 3.6',
27+
'Programming Language :: Python :: 3 :: Only',
28+
],
2429
)

0 commit comments

Comments
 (0)