From ddf44c205e0d53695d009fa651cae62b951a859d Mon Sep 17 00:00:00 2001 From: Marcel Stimberg Date: Fri, 29 Mar 2019 17:55:38 +0100 Subject: [PATCH] ***** Release Brian2 2.2.2.1 ***** --- brian2/__init__.py | 2 +- dev/conda-recipe/meta.yaml | 2 +- docs_sphinx/conf.py | 2 +- docs_sphinx/introduction/release_notes.rst | 7 +++++-- setup.py | 2 +- 5 files changed, 9 insertions(+), 6 deletions(-) diff --git a/brian2/__init__.py b/brian2/__init__.py index e98742e98..5b4a68514 100644 --- a/brian2/__init__.py +++ b/brian2/__init__.py @@ -62,7 +62,7 @@ def _check_dependencies(): __docformat__ = "restructuredtext en" -__version__ = '2.2.2' +__version__ = '2.2.2.1' __release_date__ = '2019-03-29' from brian2.only import * diff --git a/dev/conda-recipe/meta.yaml b/dev/conda-recipe/meta.yaml index a9c1579bf..246353cd3 100644 --- a/dev/conda-recipe/meta.yaml +++ b/dev/conda-recipe/meta.yaml @@ -1,6 +1,6 @@ package: name: brian2 - version: "2.2.2" + version: "2.2.2.1" build: number: 0 diff --git a/docs_sphinx/conf.py b/docs_sphinx/conf.py index 182aa80f5..e9dc6c303 100644 --- a/docs_sphinx/conf.py +++ b/docs_sphinx/conf.py @@ -107,7 +107,7 @@ def __getattr__(cls, name): # The short X.Y version. version = '2.2' # The full version, including alpha/beta/rc tags. -release = '2.2.2' +release = '2.2.2.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs_sphinx/introduction/release_notes.rst b/docs_sphinx/introduction/release_notes.rst index fe66f6773..2047b75d7 100644 --- a/docs_sphinx/introduction/release_notes.rst +++ b/docs_sphinx/introduction/release_notes.rst @@ -1,8 +1,8 @@ Release notes ============= -Brian 2.2.2 ------------ +Brian 2.2.2.1 +------------- This is a bug-fix release that fixes several bugs and adds a few minor new features. We recommend all users of Brian 2 to upgrade. @@ -10,6 +10,9 @@ As always, please report bugs or suggestions to the github bug tracker (https://github.com/brian-team/brian2/issues) or to the brian-development mailing list (brian-development@googlegroups.com). +[Note that the original upload of this release was version 2.2.2, but due to +a mistake in the released archive, it has been uploaded again as version 2.2.2.1] + Selected improvements and bug fixes ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * Fix an issue with the synapses generator syntax (:issue:`1037`). diff --git a/setup.py b/setup.py index f9b8230b2..ea93b4e1f 100644 --- a/setup.py +++ b/setup.py @@ -134,7 +134,7 @@ def build_extension(self, ext): ''' setup(name='Brian2', - version='2.2.2', + version='2.2.2.1', packages=find_packages(), package_data={# include template files 'brian2.codegen.runtime.numpy_rt': ['templates/*.py_'],