Skip to content

Commit 0d43d10

Browse files
Bump version to 2.1.0
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent e166d37 commit 0d43d10

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88

9-
## [Unreleased]
9+
## [2.1.0]
1010

1111
### Added
1212
- **Canonical fitness sharing option** via `fitness_sharing = canonical` in `[DefaultReproduction]` config section. Default `normalized` preserves existing behavior. (NEAT paper compliance)

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__ = '2.0.0'
3+
__version__ = '2.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 "2.0.0"
18+
return "2.1.0"
1919
except Exception:
20-
return "2.0.0"
20+
return "2.1.0"
2121

2222

2323
def export_feedforward(network, metadata=None):

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "neat-python"
7-
version = "2.0.0"
7+
version = "2.1.0"
88
description = "A NEAT (NeuroEvolution of Augmenting Topologies) implementation"
99
readme = "README.md"
1010
requires-python = ">=3.8"

0 commit comments

Comments
 (0)