Skip to content

Commit

Permalink
Update version information
Browse files Browse the repository at this point in the history
  • Loading branch information
jougs committed Sep 3, 2021
1 parent d19fa36 commit 2d13660
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 9 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

[![Build Status](https://travis-ci.org/nest/nest-simulator.svg?branch=master)](https://travis-ci.org/nest/nest-simulator)
[![License](http://img.shields.io/:license-GPLv2+-green.svg)](http://www.gnu.org/licenses/gpl-2.0.html)
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.3605514.svg)](https://doi.org/10.5281/zenodo.3605514)
[![Latest Version](https://img.shields.io/badge/latest%20version-2.20.0-brightgreen.svg)](https://github.com/nest/nest-simulator/releases/tag/v2.20.0)
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.5242954.svg)](https://doi.org/10.5281/zenodo.5242954)
[![Latest Version](https://img.shields.io/badge/latest%20version-2.20.2-brightgreen.svg)](https://github.com/nest/nest-simulator/releases/tag/v2.20.2)
[![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/2218/badge)](https://bestpractices.coreinfrastructure.org/projects/2218)

NEST is a simulator for spiking neural network models that focuses on the
Expand Down Expand Up @@ -113,6 +113,10 @@ you received in the NEST sources.

Please cite NEST if you use it in your work.

If you use NEST 2.20.2, please cite it as **Fardet, Tanguy et al. (2021)
NEST 2.20.2. Zenodo. 10.5281/zenodo.5242954**. The full citation is available
in different formats on [Zenodo](https://doi.org/10.5281/zenodo.5242954).

If you use NEST 2.20.1, please cite it as **Fardet, Tanguy et al. (2020)
NEST 2.20.1. Zenodo. 10.5281/zenodo.4018718**. The full citation is available
in different formats on [Zenodo](https://doi.org/10.5281/zenodo.4018718).
Expand Down
4 changes: 2 additions & 2 deletions cmake/NestVersionInfo.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# NEST_VERSION_STRING, the full NEST version string
#
# In release branches, the string "UNKNOWN" below has to be replaced
# with the proper version (e.g. "nest-2.20.1") in order to get the
# with the proper version (e.g. "nest-2.20.2") in order to get the
# correct version number if building from tarballs.


Expand Down Expand Up @@ -58,7 +58,7 @@ macro(get_version_info)
endif()

if (NOT NEST_VERSION_BRANCH)
set(NEST_VERSION_BRANCH "nest-2.20.1")
set(NEST_VERSION_BRANCH "nest-2.20.2")
endif()

string(SUBSTRING "${NEST_VERSION_BRANCH}" 0 5 isRelease)
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
nest (2.20.2-0ubuntu1ppa1) unstable; urgency=low

* NEST v2.20.2

-- Jochen Martin Eppler <[email protected]> Fri, 03 Sep 2020 11:09:00 +0000

nest (2.20.1-0ubuntu1ppa1) unstable; urgency=low

* NEST v2.20.1
Expand Down
2 changes: 2 additions & 0 deletions doc/citing-nest.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ For the full citation and additional formats follow the doi Zenodo link.

Cite the version you used in your work:

Fardet, Tanguy et al. (2021). **NEST 2.20.2** Zenodo. https://doi.org/10.5281/zenodo.5242954

Fardet, Tanguy et al. (2020). **NEST 2.20.1** Zenodo. https://doi.org/10.5281/zenodo.4018718

Fardet, Tanguy et al. (2020). **NEST 2.20.0** Zenodo. https://doi.org/10.5281/zenodo.3605514
Expand Down
2 changes: 1 addition & 1 deletion doc/contribute/mailing_list_guidelines.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ please follow the guidelines below:

* the steps you took that lead to the problem.
* the specific error messages you get.
* relevant system and version information (e.g., Ubuntu 18.04/ NEST 2.20.1 installed using Conda).
* relevant system and version information (e.g., Ubuntu 18.04/ NEST 2.20.2 installed using Conda).

#. Keep topics separate.

Expand Down
2 changes: 1 addition & 1 deletion doc/installation/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ these instructions.**

.. tab:: Ubuntu/Debian

Download the source code for the `current release <https://github.com/nest/nest-simulator/archive/v2.20.1.tar.gz>`_.
Download the source code for the `current release <https://github.com/nest/nest-simulator/archive/v2.20.2.tar.gz>`_.

Follow instructions for :doc:`linux_install` and take a look at our :doc:`install_options`.

Expand Down
2 changes: 1 addition & 1 deletion doc/tutorials/topology/hill_tononi_Vp.ipynb

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion doc/tutorials/topology/hill_tononi_Vp.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@
# ! toolbox. It is by no means complete.
# ! Load pynest
import nest
# ! Load NEST Topoplogy module (NEST 2.20.1)
# ! Load NEST Topoplogy module (NEST 2.20.2)
import nest.topology as topo
# ! Import math, we need Pi
import math
Expand Down
2 changes: 1 addition & 1 deletion doc/tutorials/topology/hill_tononi_Vp.rst
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ functions, see documentation.
# ! Load pynest
import nest
# ! Load NEST Topoplogy module (NEST 2.20.1)
# ! Load NEST Topoplogy module (NEST 2.20.2)
import nest.topology as topo
# ! Make sure we start with a clean slate, even if we re-run the script
Expand Down

0 comments on commit 2d13660

Please sign in to comment.