Skip to content

Commit 06074ef

Browse files
committed
update version numbers, add release notes
1 parent 831d4eb commit 06074ef

8 files changed

Lines changed: 36 additions & 17 deletions

File tree

doc/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,9 @@ class MockNESTModule(mock.Mock):
7676
# built documents.
7777
#
7878
# The short X.Y version.
79-
version = '2.0-alpha'
79+
version = '0.12.0'
8080
# The full version, including alpha/beta/rc tags.
81-
release = '2.0.0.alpha.1'
81+
release = '0.12.0'
8282

8383
# The language for content autogenerated by Sphinx. Refer to documentation
8484
# for a list of supported languages.

doc/index.txt

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,27 +2,19 @@
22
PyNN: documentation
33
===================
44

5-
.. warning:: This documentation is for a future version of PyNN which is still under heavy development.
6-
The API is liable to change before the final release.
7-
85
.. toctree::
96
:maxdepth: 1
107

11-
.. mc_installation
12-
.. mc_aims
13-
.. mc_api
14-
.. mc_examples
15-
168
introduction
179
installation
18-
.. quickstart
1910
building_networks
2011
injecting_current
2112
recording
2213
data_handling
2314
simulation_control
2415
parameters
2516
random_numbers
17+
mc_api
2618
backends
2719
parallel
2820
units

doc/mc_api.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
=============================================================
2-
Multicompartmental modelling with PyNN: extensions to the API
3-
=============================================================
1+
============================
2+
Multicompartmental modelling
3+
============================
44

55
.. warning::
66

doc/release_notes.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Release notes
66
.. toctree::
77
:maxdepth: 1
88

9+
releases/0.12.0.txt
910
releases/0.11.0.txt
1011
releases/0.10.1.txt
1112
releases/0.10.0.txt

doc/releases/0.11.0.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
PyNN 0.11.0 release notes
33
=========================
44

5-
May 23rd 2022
5+
May 23rd 2023
66

77
Welcome to PyNN 0.11.0!
88

doc/releases/0.12.0.txt

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
=========================
2+
PyNN 0.12.0 release notes
3+
=========================
4+
5+
September 28th 2023
6+
7+
Welcome to PyNN 0.12.0!
8+
9+
10+
NEST 3.6 support
11+
----------------
12+
13+
PyNN now supports the latest version of NEST_. NEST 3.4 and 3.5 should also work.
14+
For older versions of NEST, you will need an older version of PyNN to match.
15+
16+
17+
Beta: API extensions for multicompartment neurons
18+
-------------------------------------------------
19+
20+
In this release we introduce an experimental API extension for multicompartment neurons
21+
with detailed biophysics. Multicompartment support is only available for the NEURON_ backend
22+
and for the new Arbor_ backend. For more information, see :doc:`../mc_aims` and :doc:`../mc_api`.
23+
24+
.. _NEST: https://www.nest-simulator.org
25+
.. _NEURON: https://neuron.yale.edu/neuron/
26+
.. _Arbor: https://arbor-sim.org

pyNN/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
:license: CeCILL, see LICENSE for details.
7070
"""
7171

72-
__version__ = '2.0.0.alpha.1'
72+
__version__ = '0.12.0'
7373
__all__ = ["common", "random", "nest", "neuron", "brian2",
7474
"recording", "errors", "space", "descriptions",
7575
"standardmodels", "parameters", "core", "morphology",

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "PyNN"
3-
version = "0.11.0"
3+
version = "0.12.0"
44
description = "A Python package for simulator-independent specification of neuronal network models"
55
readme = "README.rst"
66
requires-python = ">=3.8"

0 commit comments

Comments
 (0)