diff --git a/doc/conf.py b/doc/conf.py index 0cc26799..f7bbf45d 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -76,9 +76,9 @@ class MockNESTModule(mock.Mock): # built documents. # # The short X.Y version. -version = '2.0-alpha' +version = '0.12.0' # The full version, including alpha/beta/rc tags. -release = '2.0.0.alpha.1' +release = '0.12.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/doc/index.txt b/doc/index.txt index f1b67b5b..c12d1f6c 100644 --- a/doc/index.txt +++ b/doc/index.txt @@ -2,20 +2,11 @@ PyNN: documentation =================== -.. warning:: This documentation is for a future version of PyNN which is still under heavy development. - The API is liable to change before the final release. - .. toctree:: :maxdepth: 1 -.. mc_installation -.. mc_aims -.. mc_api -.. mc_examples - introduction installation -.. quickstart building_networks injecting_current recording @@ -23,6 +14,7 @@ PyNN: documentation simulation_control parameters random_numbers + mc_api backends parallel units diff --git a/doc/mc_api.txt b/doc/mc_api.txt index 43d588ae..9614de28 100644 --- a/doc/mc_api.txt +++ b/doc/mc_api.txt @@ -1,6 +1,6 @@ -============================================================= -Multicompartmental modelling with PyNN: extensions to the API -============================================================= +============================ +Multicompartmental modelling +============================ .. warning:: diff --git a/doc/release_notes.txt b/doc/release_notes.txt index bb046c78..dffb9b93 100644 --- a/doc/release_notes.txt +++ b/doc/release_notes.txt @@ -6,6 +6,7 @@ Release notes .. toctree:: :maxdepth: 1 + releases/0.12.0.txt releases/0.11.0.txt releases/0.10.1.txt releases/0.10.0.txt diff --git a/doc/releases/0.11.0.txt b/doc/releases/0.11.0.txt index 5f0f0d3b..2a5e8d8a 100644 --- a/doc/releases/0.11.0.txt +++ b/doc/releases/0.11.0.txt @@ -2,7 +2,7 @@ PyNN 0.11.0 release notes ========================= -May 23rd 2022 +May 23rd 2023 Welcome to PyNN 0.11.0! diff --git a/doc/releases/0.12.0.txt b/doc/releases/0.12.0.txt new file mode 100644 index 00000000..7d42b3a2 --- /dev/null +++ b/doc/releases/0.12.0.txt @@ -0,0 +1,26 @@ +========================= +PyNN 0.12.0 release notes +========================= + +September 28th 2023 + +Welcome to PyNN 0.12.0! + + +NEST 3.6 support +---------------- + +PyNN now supports the latest version of NEST_. NEST 3.4 and 3.5 should also work. +For older versions of NEST, you will need an older version of PyNN to match. + + +Beta: API extensions for multicompartment neurons +------------------------------------------------- + +In this release we introduce an experimental API extension for multicompartment neurons +with detailed biophysics. Multicompartment support is only available for the NEURON_ backend +and for the new Arbor_ backend. For more information, see :doc:`../mc_aims` and :doc:`../mc_api`. + +.. _NEST: https://www.nest-simulator.org +.. _NEURON: https://neuron.yale.edu/neuron/ +.. _Arbor: https://arbor-sim.org \ No newline at end of file diff --git a/pyNN/__init__.py b/pyNN/__init__.py index 6641c993..98c01688 100644 --- a/pyNN/__init__.py +++ b/pyNN/__init__.py @@ -69,7 +69,7 @@ :license: CeCILL, see LICENSE for details. """ -__version__ = '2.0.0.alpha.1' +__version__ = '0.12.0' __all__ = ["common", "random", "nest", "neuron", "brian2", "recording", "errors", "space", "descriptions", "standardmodels", "parameters", "core", "morphology", diff --git a/pyproject.toml b/pyproject.toml index da0438dc..fc3a0719 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "PyNN" -version = "0.11.0" +version = "0.12.0" description = "A Python package for simulator-independent specification of neuronal network models" readme = "README.rst" requires-python = ">=3.8"