Skip to content

Commit 7952026

Browse files
Bump version number to 1.1
1 parent 79f49b1 commit 7952026

File tree

7 files changed

+14
-15
lines changed

7 files changed

+14
-15
lines changed

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,9 @@
7979
# built documents.
8080
#
8181
# The short X.Y version.
82-
version = '1.0.0'
82+
version = '1.1'
8383
# The full version, including alpha/beta/rc tags.
84-
release = '1.0.0'
84+
release = '1.1.0'
8585

8686
if version != release:
8787
tags.add('draft')

docs/installation.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@ two methods outlined below:
1111

1212
Install neat-python from PyPI using pip
1313
---------------------------------------
14-
To install the most recent release (version 1.0.0) from PyPI, you should run the command (as root or using `sudo`
14+
To install the most recent release (version 1.1.0) from PyPI, you should run the command (as root or using `sudo`
1515
as necessary)::
1616

1717
pip install neat-python
1818

1919
Note that the examples are not included with the package installed from PyPI, so you should download the `source archive
20-
for release 1.0.0
20+
for release 1.1.0
2121
<https://github.com/CodeReclaimers/neat-python/releases/tag/v1.0.0>`_ and use the example code contained in it.
2222

23-
You may also just get the 1.0.0 release source, and install it directly using `setup.py` (as shown below)
23+
You may also just get the 1.1.0 release source, and install it directly using `setup.py` (as shown below)
2424
instead of `pip`.
2525

2626
Install neat-python from source using setup.py
@@ -29,8 +29,8 @@ Obtain the source code by either cloning the source repository::
2929

3030
git clone https://github.com/CodeReclaimers/neat-python.git
3131

32-
or downloading the `source archive for release 1.0.0
33-
<https://github.com/CodeReclaimers/neat-python/releases/tag/v1.0.0>`_.
32+
or downloading the `source archive for release 1.1.0
33+
<https://github.com/CodeReclaimers/neat-python/releases/tag/v1.1.0>`_.
3434

3535
Note that the most current code in the repository may not always be in the most polished state, but I do make sure the
3636
tests pass and that most of the examples run. If you encounter any problems, please open an `issue on GitHub

docs/network_export.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ Here's an example of exported JSON for a simple XOR network:
9393
"network_type": "feedforward",
9494
"metadata": {
9595
"created_timestamp": "2025-11-09T15:30:00Z",
96-
"neat_python_version": "1.0.0",
96+
"neat_python_version": "1.1.0",
9797
"fitness": 3.95,
9898
"generation": 150
9999
},

neat/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""A NEAT (NeuroEvolution of Augmenting Topologies) implementation"""
22

3-
__version__ = '1.0.0'
3+
__version__ = '1.1.0'
44

55
import neat.nn as nn
66
import neat.ctrnn as ctrnn

neat/export/exporters.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ def _get_neat_version():
1515
import neat
1616
if hasattr(neat, '__version__'):
1717
return neat.__version__
18-
return "1.0.0"
18+
return "1.1.0"
1919
except:
20-
return "1.0.0"
20+
return "1.1.0"
2121

2222

2323
def export_feedforward(network, metadata=None):

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name='neat-python',
5-
version='1.0.0',
5+
version='1.1.0',
66
author='Alan Mcintyre, Cesar Gomes Miguel, Carolina Feher da Silva, Marcio Lobo Netto',
77
author_email='[email protected]',
88
maintainer='Alan McIntyre',
@@ -11,8 +11,7 @@
1111
license="BSD",
1212
description='A NEAT (NeuroEvolution of Augmenting Topologies) implementation',
1313
long_description='Python implementation of NEAT (NeuroEvolution of Augmenting Topologies), a method ' +
14-
'developed by Kenneth O. Stanley for evolving arbitrary neural networks. ' +
15-
'Version 1.0.0 includes full innovation number tracking as described in the original NEAT paper.',
14+
'developed by Kenneth O. Stanley for evolving arbitrary neural networks. '
1615
long_description_content_type= 'text/x-rst',
1716
packages=['neat', 'neat/iznn', 'neat/nn', 'neat/ctrnn'],
1817
python_requires='>=3.8',

tests/test_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def test_nonexistent_config():
1717

1818
def test_bad_config_default_activation():
1919
"""Check that an activation function default not in the list of options
20-
raises an Exception with the appropriate message."""
20+
raises an Exception."""
2121
test_bad_config_RuntimeError(config_file='bad_configuration0')
2222

2323
def test_bad_config_unknown_option():

0 commit comments

Comments
 (0)