Skip to content

Commit

Permalink
update version numbers, add release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
apdavison committed Sep 28, 2023
1 parent 831d4eb commit 06074ef
Show file tree
Hide file tree
Showing 8 changed files with 36 additions and 17 deletions.
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
10 changes: 1 addition & 9 deletions doc/index.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,19 @@
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
data_handling
simulation_control
parameters
random_numbers
mc_api
backends
parallel
units
Expand Down
6 changes: 3 additions & 3 deletions doc/mc_api.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
=============================================================
Multicompartmental modelling with PyNN: extensions to the API
=============================================================
============================
Multicompartmental modelling
============================

.. warning::

Expand Down
1 change: 1 addition & 0 deletions doc/release_notes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion doc/releases/0.11.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
PyNN 0.11.0 release notes
=========================

May 23rd 2022
May 23rd 2023

Welcome to PyNN 0.11.0!

Expand Down
26 changes: 26 additions & 0 deletions doc/releases/0.12.0.txt
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion pyNN/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 06074ef

Please sign in to comment.